Local Setup

  • Make sure you have the necessary requirements installed and updated, mentioned in the requirements.txt file

Local Development Run

  • Simply run app.py , it will initiate the flask app in development.

Folder Structure

  • tododb.sqlite3 has the sqlite3 DB.
  • app.py is where our application code is
  • templates - contains all the html template files
  • static contains style.css and imgs folder for graph

├── app.py ├── tododb.sqlite3 ├── static ├──style.css └──imgs ├── readme.md └── templates ├── card_edit.html └── create-card.html └── create-list.html └── index.html └── layout.html └── listdetail.html └── list_edit.html └── login.html └── shiftcard.html └── signup.html └── summary.html