Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.56 KB

File metadata and controls

32 lines (22 loc) · 1.56 KB

CSE-312 Project: eCommerce (Auction House)

Description: Making a storefront where users can buy and sell goods. The store will also have an option for users to put items up for auction

Group Members (by ubits): xli256, yiyuanwa, huandong, tvho

<----------------Helper Commands--------------------->

command that use flask run the server

# flask --app auth.py --debug run

command that use docker run the server

# • To run your app [and database]
    # • docker-compose up
# • To run in detached mode
    # • docker-compose up -d
# • To rebuild and restart the containers
    # • docker-compose up --build --force-recreate
# • To restart the containers without rebuilding
    # • docker-compose restart

<--------------------------------------------------->

  • When Click ON the "POST" Drop Down Button on our "Shopping Web Page", Please Click "↓"(Arrow Down) key on the KeyBoard to open the Drop Down Menu.

Screen Shot 2022-12-09 at 16 40 04

  • When runing "docker-compose up", make sure you are in the "Server" directory! Thank you!

  • "session" Cookie is only used on the "Place Bid" button. If user delete the "Session" Cookie, then click "Place Bid", Item price will not be updated.

  • "auth_token" Cookie is used on rest of the Pages and features. If user delete the "auth_token" Cookie, then click on any buttons or links expect "Place Bid" button, it will redirect them to our "Login" Page.