Interactive todo list web application
Go to file
coja 8acbb02a2f README update 2024-01-18 02:04:32 +01:00
build-deb add deb files to gitignore and change permissions of install scripts 2024-01-17 15:35:47 +01:00
taskmanager [FE] Design init 2024-01-18 01:58:03 +01:00
.gitignore add deb files to gitignore and change permissions of install scripts 2024-01-17 15:35:47 +01:00
LICENSE change more filenames and strings to say taskmanager instead of flaskapp 2024-01-16 13:24:45 +01:00
README.md README update 2024-01-18 02:04:32 +01:00
init_db.py fix init_db file and run.py 2024-01-16 13:28:11 +01:00
requirments.txt init 2023-10-20 15:20:56 +02:00
run.py fix init_db file and run.py 2024-01-16 13:28:11 +01:00

README.md

Task Manager

Interactive TODO list web application

Development Setup

Install python and pip on local machine

pip install virtualenv
python -m venv venv #/path/to/new/virtual/environment
source venv/bin/activate #activate virtual env
pip install -r requirements.txt
python3 ./init_db.py #initialize database

python3 ./run.py #run project

Build app

cd build-deb/
sudo apt install ./flaskapp.deb
make