Generic flask app for use as a template for new projects
Go to file
fram3d 864a75fe7b
update install scripts
2024-01-18 14:37:38 +01:00
build-deb update install scripts 2024-01-18 14:37:38 +01:00
flaskapp add config.ini and save db during upgrade 2024-01-18 14:32:53 +01:00
.gitignore add var to gitignore and update README with dev setup instructions 2024-01-18 12:34:49 +01:00
LICENSE init 2023-10-20 15:20:56 +02:00
README.md fix install instructions in README 2024-01-18 12:38:03 +01:00
init_db.py fix init db by adding context 2024-01-16 13:06:45 +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

README.md

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/
make

Build app

sudo apt install ./flaskapp.deb