Skip to content

Latest commit

 

History

History
16 lines (15 loc) · 560 Bytes

README.md

File metadata and controls

16 lines (15 loc) · 560 Bytes

task-master

A simple to-do list web application built using the Flask web framework and utilizes the Sqlite3 database.

Installation:

  1. Create an virtual environment python -m venv venv
  2. Activate the virtual environment.
  3. pip install -r requirements.txt
  4. Create a .env file for storing environment variables:
FLASK_APP=run
FLASK_ENV=development
SECRET_KEY=EnterAnyRandomKeyHere
DATABASE_URI_LOCAL=sqlite:///main.db
  1. Create Tables: python3 db_create.py
  2. flask run