- HTML
- CSS
- Python
- Bootstrap 4 from https://getbootstrap.com/docs/4.1/getting-started/introduction/
- Flask https://flask.palletsprojects.com/en/1.1.x/
python== 3.5 or up and flask==1.1.2
open terminal and type:
pip install virtualenv
Create a virtual environment now:
virtualenv virtualenv_name
After this command, a folder named virtualenv_name will be created. You can name anything to it. Now at last we just need to activate it, using command For Mac/ Linux:
source virtualenv_name/bin/activate
to activate virtualenv on Windows, activate script is in the Scripts folder:
virtualenv_name\Scripts\activate.bat
Now you are in a Python virtual environment.You can deactivate using:
deactivate
open terminal and type
git clone https://github.com/art3mis69/Flask-Task-Master.git
Consists of Web Interface,where you can
- Add Task
- Update Task
- Delete Task
run the following commands to run the app on development server:
python app.py
Now, open a Web browser and go to local server on your local domain – e.g., http://127.0.0.1:5000/ .