Add workflow
Deploy PBT / deploy (push) Failing after 32s

This commit is contained in:
2026-09-09 17:39:25 +02:00
parent c295e7c676
commit f4c75526c3
12 changed files with 452 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import os
class Config:
# Beispiel: postgresql://pbt_app:PASSWORT@10.10.10.x/pbt
SQLALCHEMY_DATABASE_URI = os.environ.get(
"PBT_DATABASE_URL",
"postgresql://pbt_app:changeme@postgres/pbt",
)
SQLALCHEMY_TRACK_MODIFICATIONS = False
SECRET_KEY = os.environ.get("PBT_SECRET_KEY", "bitte-in-produktion-aendern")