9 lines
572 B
Plaintext
9 lines
572 B
Plaintext
# ── Database (Postgres) ──────────────────────────────────────────────────────
|
|
DB_USER=postgres
|
|
DB_PASS=supersecret
|
|
DB_NAME=lnbitsdb
|
|
DATABASE_URL=postgresql://${DB_USER}:${DB_PASS}@db:5432/${DB_NAME}
|
|
|
|
# ── Flask UI ──────────────────────────────────────────────────────────────────
|
|
FLASK_SECRET=someRandomStringForSessions
|