Skip to content

E-commerce app using Rails 7, PostgreSQL, Hotwire (Turbo + Stimulus), Tailwind CSS, Cloudinary, and Stripe

License

Notifications You must be signed in to change notification settings

binos30/shopline

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Shopline

CI/CD Dependabot Status

E-commerce app. Shop online with Shopline. You shop, we ship!

Homepage Dashboard Dashboard-Dark Orders Orders-Dark

Setup

Prerequisites

Create .env file at the root of the project directory. Copy the content of .env.template.erb to .env then update the username and password based on your database credentials. Get STRIPE_SECRET_KEY and STRIPE_WEBHOOK_SECRET from your Stripe account

Install dependencies and setup database

bin/setup

Start local web server

bin/dev

Go to http://localhost:3000

Use Stripe CLI to simulate Stripe events in your local environment or learn more about Webhooks

stripe listen --forward-to localhost:3000/stripe_webhooks

Testing Payments

To test Stripe payments, use the following test card details:

  • Card Number: 4242 4242 4242 4242
  • Expiration: Any future date
  • CVC: Any 3-digit number

Set up a production Stripe webhook

  1. Go to the Stripe Dashboard and create a new webhook for your production environment.
  2. Set the endpoint URL to your production route (e.g., https://yourdomain.com/stripe_webhooks).
  3. Select the events you want to listen for (e.g., checkout.session.completed, customer.created).

GitHub Actions, Linting and Security Auditing

GitHub actions are setup to lint and test the application on pushes to main and feature branches. It's also setup to deploy the application on pushes to main

You can also run these actions locally before pushing to see if your run is likely to fail. See the following gems / commands for more info.

Testing

Setup test database

bin/rails db:test:prepare

Default: Run all spec files (i.e., those matching spec/**/*_spec.rb)

bin/rspec

or with --fail-fast option to stop running the test suite on the first failed test. You may add a parameter to tell RSpec to stop running the test suite after N failed tests, for example: --fail-fast=3

bin/rspec --fail-fast

Run all spec files in a single directory (recursively)

bin/rspec spec/models

Run a single spec file

bin/rspec spec/models/product_spec.rb

Run a single example from a spec file (by line number)

bin/rspec spec/models/product_spec.rb:6

Use the plain-English descriptions to generate a report of where the application conforms to (or fails to meet) the spec

bin/rspec --format documentation
bin/rspec --format documentation spec/models/product_spec.rb

See all options for running specs

bin/rspec --help

After running your tests, open coverage/index.html in the browser of your choice. For example, in a Mac Terminal, run the following command from your application's root directory:

open coverage/index.html

in a debian/ubuntu Terminal,

xdg-open coverage/index.html

Note: This guide can help if you're unsure which command your particular operating system requires.