Here is my Todo Web application using popular technologies and frameworks:- flask, bootstrap, jinja2, SQLAlchamey, CSS3, HTML5
--Tasks_app
|
|--instance
| |--Tasks.db
|
|--static
| |--css
| | |--style.css
| | |--login.css
| |
| |--script
| | |--login.js
| | |--script.js
| |
| |--icons
| |--male.png
| |--female.png
|
|
|--templates
| |--base.html
| |--home.html
| |--update.html
| |--about.html
| |--login.html
|
|--app.py
|
|--.gitignore
|
|--LICENSE
|
|--README.md
|
|--requirments.txt
you can run this web-app in either local env or virtual env.
To run this app on local env
python app.py
To run this app in virtual env
- install Virtualenv for python
pip install virtualenv
- Create a virtual env
virtualenv <name>
- Activate the virtual env
.\env\Scripts\Activate
- install all the dependencies used in app
pip install -r requirements.txt
- Now Run this app
python app.py