Simulate purchasing items from the Legend of Zelda: Breath of the Wild's favorite monstrous shop, Fang and Bone.
Visit the deployed app at http://fang-and-bone.herokuapp.com/ Test User - Email: [email protected], Password: 123
Built with: React, Redux, Node, Postgres, Heroku, Travis
- View a listing of products and select individual products to view their details and add to your cart.
- Review your cart to increase or decrease the quantity of a product, delete an individual product, or clear the entire cart before checkout.
- Place and confirm an order through checkout.
- Clone the repo to your local machine.
- Run
npm install
to install the packages. - Create two postgres databases (
MY_APP_NAME
should match the name parameter in package.json):
export MY_APP_NAME=fang_and_bone
createdb $MY_APP_NAME
createdb $MY_APP_NAME-test
By default, running
npm test
will usefang_and_bone-test
, while regular development usesfang_and_bone
- Run
npm run seed
to populate your database with dummy data from the seed script file. - Run
npm run start-dev
to bundle and run the app on the localhost (defaulted tolocalhost:8080
).
Boilerplate Code: Fullstack Academy The Legend of Zelda Copyright Nintendo