Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 553 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 553 Bytes

Todos

File Structure:

  1. app.py - Main app file (Everything is in here)
  2. templates/home.html - Template that contains home page.
  3. templates/login.html - Template that contains login page.
  4. database.db - Database file
  5. README.md - File that contains all of the information about the app (This file).

Installing Dependencies:

  1. Windows -
pip install -r requirements.txt
  1. macOS -
pip3 install -r requirements.txt

To run the app:

  1. Windows -
python app.py
  1. macOS -
python3 app.py