- A simple todo app with CRUD features created using flask
Use this todo app on https://todoapp-flask-nrrd.onrender.com/
- Install virtualenv (
pip install virtualenv
) - Create a virtual env using this command
virtualenv env
- Activate it on windows with the following command
.\env\Scripts\activate
- Activate on mac/linux with the following command
.\env\bin\activate
- Install the required packeges in virtual environment
pip install -r requirements.txt
- Uncomment the last few lines in
app.py
for development - Run the development server
python .\app.py
Made by @arnavnagpurkar
This project is licensed under Apache-2.0 license read LICENSE for more details