Skip to content

A task master CRUD web app, allowing users to add items to a to-do list, update their descriptions, mark them as complete, and delete entries ๐Ÿ“

License

Notifications You must be signed in to change notification settings

swiderskis/flask-taskmaster-webapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

13 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

flask-taskmaster-webapp

A task master CRUD web app, allowing users to add items to a to-do list, update their descriptions, mark them as complete, and delete entries ๐Ÿ“

Built using Flask, based upon on this YouTube tutorial.

Installation

These installation instructions are for Windows. Mac and Linux setup may differ slightly.

Install the latest version of Python 3, found here. Your current Python installation version can be checked using:

python --version

Install virtualenv using:

pip install virtualenv

and set it up in the project folder using:

virtualenv env

Activate your virtual environment using:

source env/Scripts/activate

Install Flask and SQLAlchemy using:

pip install flask flask-sqlalchemy

Create the database using:

python create_all_dbs.py

Finally, run the app using:

python app.py

This will host the web app on localhost:5000.

About

A task master CRUD web app, allowing users to add items to a to-do list, update their descriptions, mark them as complete, and delete entries ๐Ÿ“

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published