front/app-design-init #3

Merged
coja merged 2 commits from front/app-design-init into master 2024-01-18 10:33:56 +00:00
1 changed files with 6 additions and 4 deletions
Showing only changes of commit 8acbb02a2f - Show all commits

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
```