Jamie Crockett, Penney Garrett, Brant Wellman
This project was created as a part of the curriculum for the Turing School of Software & Design.
This Rails application is a marketplace for all your post-apocalypse needs. A user can create a cart full of necessities, create an account, and pay with Stripe payment.
You can find a live version of this application on Heroku here.
To set up a local copy of this project, perform the following:
- Clone the repository:
git clone https://github.com/brantwellman/Turing-zombie-survival-store.git
cd
into the project's directory- Run
bundle install
- Run
rake db:create db:migrate db:seed
to set up the postgres database and seed it with items for purchase. - Run the application in the dev environment by running
rails s
The app is integrated with a test version of Stripe for mock-processing of payment at checkout.
The test suite tests the application on multiple levels. To run all of the tests, run rake test
from the terminal in the main directory of the project. The feature tests (integration tests) rely mainly on the Capybara gem for navigating the various application views.
The project also utilizes the Simplecov gem for quick statistics on code coverage.
This application depends on many ruby gems, all of which are found in the Gemfile
and can be installed by running bundle install
from the terminal in the main directory of the project.
The original project description can be found here