README update

This commit is contained in:
coja 2024-01-18 02:04:32 +01:00
parent 2c4c9a9802
commit 8acbb02a2f
1 changed files with 6 additions and 4 deletions

View File

@ -1,10 +1,10 @@
# taskmanager # Task Manager
Interactive TODO list web application Interactive TODO list web application
# Development Setup # Development Setup
install python and pip Install python and pip on local machine
```bash ```bash
pip install virtualenv pip install virtualenv
@ -13,12 +13,14 @@ source venv/bin/activate #activate virtual env
pip install -r requirements.txt pip install -r requirements.txt
python3 ./init_db.py #initialize database python3 ./init_db.py #initialize database
python3 ./run.py python3 ./run.py #run project
``` ```
# Build app # Build app
```bash
cd build-deb/ cd build-deb/
make
sudo apt install ./flaskapp.deb sudo apt install ./flaskapp.deb
make
```