A simple Flask learning project which performs CRUD operations on tasks.
Create and update tasks. Mark task as completed or pending. Delete tasks.
git clone https://github.com/SruthiKrish19/flask-task-app.git
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
Open a Python shell and run the following commands:
>>> from app import app, db
>>> with app.app_context():
... db.create_all()
... exit()
flask run
alternatively you can use
python app.py
Open the app in your browser: http://127.0.0.1:5000/
Click here to view the demo video!