A simple to-do list web application built using the Flask web framework and utilizes the Sqlite3 database.
- Create an virtual environment
python -m venv venv
- Activate the virtual environment.
pip install -r requirements.txt
- Create a .env file for storing environment variables:
FLASK_APP=run
FLASK_ENV=development
SECRET_KEY=EnterAnyRandomKeyHere
DATABASE_URI_LOCAL=sqlite:///main.db
- Create Tables:
python3 db_create.py
flask run