This commit is contained in:
Mateusz Gruszczyński
2025-11-04 09:56:37 +01:00
parent 32ef62e4ac
commit addb21bc3e
34 changed files with 3864 additions and 367 deletions

19
.env.example Normal file
View File

@@ -0,0 +1,19 @@
# ===== FLASK =====
FLASK_ENV=production
FLASK_APP=app.py
FLASK_DEBUG=0
# ===== DATABASE =====
DATABASE_URL=sqlite:////app/instance/app.db
# ===== SECURITY =====
SECRET_KEY=your-super-secret-key-change-this
ADMIN_USERNAME=admin
ADMIN_PASSWORD=admin123
# ===== HAPROXY =====
HAPROXY_CONFIG_PATH=/etc/haproxy/haproxy.cfg
HAPROXY_STATS_PORT=8404
# ===== LOGGING =====
LOG_LEVEL=INFO