https://github.com/fullstackacademy/prof-store
https://github.com/fullstackacademy/prof-store
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fullstackacademy/prof-store
- Owner: FullstackAcademy
- Created: 2023-10-09T14:45:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-13T19:42:32.000Z (over 2 years ago)
- Last Synced: 2024-12-27T14:09:41.224Z (over 1 year ago)
- Language: JavaScript
- Size: 194 KB
- Stars: 0
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# the store
- npm install
- modify connection string
- create database
- npm run start:dev
- npm run start:dev:sync (builds tables and syncs data)
- npm run build:dev
# features
- [ ] as a user I should see that a product has prices
- [ ] as a user I should see a description for a product
- [ ] as a user I should be able to bookmark a product (product detail page)
- [ ] as a user I should see the total amount in my cart as well as my orders
- [ ] as a user I should be able to increment and decrement items in my cart
- [ ] as a user if I decrement an quantity to zero, the line_item should be deleted
- [ ] as a user I should see an error message if my credentials are not correct
- [ ] as a user I should be able to create an account.
- [ ] as a user I should have profile settings which I can edit
- [ ] as a user I should be able to add an avatar to my profile
- [ ] as a user I should be able to add a shipping address to an order
- [ ] as a user I should be able see reviews for products on the product detail page
- [ ] as a user I should be able to leave a review on the product detail page
- [ ] as a user I should be able to add and remove products from a wish list
- [ ] as a user I should be able to rank the products in my wishlist
- [ ] as a user I should be able to search for products, based on the name of the product.
- [ ] as a user I should be able to bookmark the search results
- [ ] as a vip user I should be able to see that I am a vip user
- [ ] as a vip user I should be able to see vip_only products
- [ ] as a non-vip user, I should not be able to see vip_only products
- [ ] as a user I should be able to page through products in groups of 10 products per page
- [ ] as a user I should be able to filter products based on tags
- [ ] as a user I should be able to login via a third party app (github)
- [ ] as a user I should be able to use Google places to enter an address for my order
- [ ] as a non logged in user, I should be able to add items to my cart, with those items getting added to my cart when I authenticate
- [ ] as an administrator I should be able to add and edit products
- [ ] as an administrator I should be able to make a user a vip
- [ ] as an administrator adminstrator I should be able to mark a product as vip_only, which can only be purchased by vip users.
- [ ] as an administrator I should be able to see all users
- [ ] as an administrator I should be able to see all wish lists
- [ ] as an administrator I should be able to see all orders
- [ ] as an administrator I should be able to tag products
- [ ] as an administator I should be able to see a map, where all the customer orders have shipped.