made this a hell of a lot better

This commit is contained in:
2025-08-12 20:16:46 +02:00
parent c7c1b8ecd6
commit 89ea87951e
29 changed files with 474 additions and 450 deletions

14
run.bash Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
set -e # exit if any command fails
python -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
export FLASK_APP=QPP.app
export FLASK_ENV=production
flask run --host=0.0.0.0 --port=5000