2025-05-14 15:02:03 +00:00
|
|
|
# ── Database (Postgres) ──────────────────────────────────────────────────────
|
2025-05-14 13:50:23 +00:00
|
|
|
DB_USER=postgres
|
|
|
|
DB_PASS=supersecret
|
2025-05-11 00:02:12 +00:00
|
|
|
DB_NAME=lnbitsdb
|
2025-05-14 13:50:23 +00:00
|
|
|
DATABASE_URL=postgresql://${DB_USER}:${DB_PASS}@db:5432/${DB_NAME}
|
|
|
|
|
2025-05-14 15:02:03 +00:00
|
|
|
# ── Flask UI ──────────────────────────────────────────────────────────────────
|
|
|
|
FLASK_SECRET=someRandomStringForSessions
|