A simple To-Do application built using Flask.
- Add tasks
- Delete tasks
- Update tasks
Ensure you have the following installed on your system:
- Python (>=3.7)
- pip (Python package manager)
Navigate to the folder where your Flask To-Do app is located.
pip install virtualenv
virtualenv env
# Activate virtual environment
# Windows
env\Scripts\activate
pip install flask
pip install pymysql
py app.py
Note: Keep the html files in templates folder inside your project folder and virtualenv env command will create a folder as well also keep static folder to store the images, css, and js files that is used in the app
The app will be running at: http://127.0.0.1:5000/