A simple webpage that helps you to keep track of your tasks.
2nd finalist in the Episcopal Science and Technology Fair 2022.
Para leer las instrucciones en Español, ve aquí.
Before starting, make sure you have installed Python 3.9 or above, and make sure it is added to the PATH. You'll also need SQLite3
- Download the source code from GitHub, or clone this respository with Git.
git clone https://github.com/MrFellox/todo-web.git
- (Recommended) Create a new virtual environment and activate it.
# Example for Windows
# Create a new virtual environment
python3 -m venv venv
# Activate the virtual environment (you'll need to activate it every time you use this project)
venv\Scripts\activate
- Install all dependencies with pip.
pip install -r requirements.txt
- Create the database.
# This command only applies to Windows users, if you are in any other OS, just follow the commands in todo/create_db.sql
db_setup.bat
- Run the Flask dev server.
python3 start.py
You can now access the URL that is shown in the console and now you can use the app.