A simple server side to-do task application based on flask micro-framework.
Heroku Platform
- Python
- SQLite (SQLAlchemy)
- Javascript (Minor)
- HTML
- CSS
- Username : temp
- Password : temp@123
Password's are hashed before saving to database.
Make sure you have Python and the Heroku CLI installed.
git clone https://github.com/deepspraj/flask-todo-app.git # or clone your own fork
cd flask-todo-app.
pip install -r requirements.txt
python app.py
Your app should now be running on http://localhost:5000.
git add .
git commit -am "realease v1"
git push heroku master
heroku open
Alternatively, you can deploy your own copy of the app using this button:
- Delete migrations folder, database and follow steps given below. (use if any changes are to be implemented in database else don't perform ever)
(terminal) > set FLASK_APP=app.py
(terminal) > flask db init
(terminal) > flask db migrate
(terminal) > flask db upgrade