Generic flask app for use as a template for new projects
Go to file
2024-01-18 12:34:49 +01:00
build-deb add running of init_db.py after installation 2024-01-17 15:29:28 +01:00
flaskapp init 2023-10-20 15:20:56 +02:00
.gitignore add var to gitignore and update README with dev setup instructions 2024-01-18 12:34:49 +01:00
init_db.py fix init db by adding context 2024-01-16 13:06:45 +01:00
LICENSE init 2023-10-20 15:20:56 +02:00
README.md add var to gitignore and update README with dev setup instructions 2024-01-18 12:34:49 +01:00
requirments.txt init 2023-10-20 15:20:56 +02:00
run.py add installation instructions,fix install scripts permissions and add shebang to run.py 2024-01-17 15:07:32 +01:00

Task Manager

Web app

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