https://github.com/mkornyev/bakingfactory
An ecommerce webapp built on the Rails framework.
https://github.com/mkornyev/bakingfactory
bootstrap postgres rails simplecov
Last synced: 3 months ago
JSON representation
An ecommerce webapp built on the Rails framework.
- Host: GitHub
- URL: https://github.com/mkornyev/bakingfactory
- Owner: mkornyev
- Created: 2019-05-06T05:24:38.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-18T18:21:13.000Z (over 3 years ago)
- Last Synced: 2026-01-03T16:22:51.826Z (6 months ago)
- Topics: bootstrap, postgres, rails, simplecov
- Language: JavaScript
- Homepage: https://baking-factory.herokuapp.com/
- Size: 4.62 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

Check out the deployed Webapp on heroku.
## Setup (Ruby on Rails)
1. Run `bundle install` in the project directory
2. Migrate with `rake db:migrate`
3. Populate the data with `rake db:populate`
4. Run `rails server` and view the factory at `http://localhost:3000`
## Logins
Admin: 'mark'
Baker: 'baker'
Shipper: 'shipper'
User: 'user12' (users 1-120 exist in the system)
**All the users in the system use the password 'secret'.**
## Feature List
-Cart, checkout, and order creation
-Payment Gateway Simulation
-Authentication & Authorization for 4 different types of users
-Informative Admin Dashboards
-Baking & Shipping Lists that simulate in-house inventory and fulfilment services
-Models that accurately calculate shipping costs based on item weights
## Acknowledgements
Larry Heimann, 'profh' on github, is responsible for writing the Model and test code for this project.