This commit is contained in:
2025-08-12 20:42:26 +02:00
parent c1ef310f6a
commit 1374cb9cb1
23 changed files with 6 additions and 6 deletions

View File

@@ -3,7 +3,7 @@
set -e # exit if any command fails
# Ensure QPP/database directory exists
mkdir -p QPP/database
mkdir -p src/database
python -m venv venv
source venv/bin/activate
@@ -11,7 +11,7 @@ source venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
export FLASK_APP=QPP.app
export FLASK_APP=src.app
export FLASK_ENV=production
flask run --host=0.0.0.0 --port=5000