/myAuction

This auction website project is built using the Python programming language, the Flask web framework, SQLite database management system, HTML for the front-end structure and CSS for styling.

Primary LanguageHTMLMIT LicenseMIT

myAuction

Simple bidding website made with Flask, Flask-sqlalchemy, Bootstrap

Directory Structure

📦 
├─ requirements.txt
├─ LICENSE
├─ Procfile
├─ README.md
├─ main.py
├─ controllers
│  â”œâ”€ __init__.py
│  â”œâ”€ bidding.py
│  â”œâ”€ create_listing.py
│  â”œâ”€ delete_product.py
│  â”œâ”€ home.py
│  â”œâ”€ my_bid.py
│  â”œâ”€ profile.py
│  â”œâ”€ signin.py
│  â”œâ”€ signup.py
│  â””─ update.py
├─ models
│  â”œâ”€ __init__.py
│  â”œâ”€ product.py
│  â””─ user.py
└─ views
   â”œâ”€ static
   â”‚  â””─ css
   â”‚     â””─ style.css
   â””─ templates
      â”œâ”€ No_bid_yet.html
      â”œâ”€ No_product.html
      â”œâ”€ add_product.html
      â”œâ”€ bid.html
      â”œâ”€ home.html
      â”œâ”€ layout.html
      â”œâ”€ my_bidding.html
      â”œâ”€ navbar.html
      â”œâ”€ profile.html
      â”œâ”€ signin.html
      â””─ signup.html

Run locally

pip install -r requirements.txt
python main.py