Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 496 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 496 Bytes

Task Cultivator

Task Cultivator is a simple todo app using Python, Flask, and SQLAlchemy.

Using this app, you are able to create, edit, and delete your tasks. Additionally, when you have the capability to complete/uncompelete tasks.

Setup

  1. Setup virtual environment (venv)
python3 -m venv venv
  1. Activate your environment
. venv/bin/activate
  1. Install required packages
pip3 install -r requirements.txt
  1. Run the Todo project
python3 index.py