15 lines
238 B
Bash
15 lines
238 B
Bash
# --- Backend API ---
|
|
PORT=4000
|
|
|
|
# --- Postgres ---
|
|
PGHOST=db
|
|
PGUSER=postgres
|
|
PGPASSWORD=postgres
|
|
PGDATABASE=supersunday
|
|
PGPORT=5432
|
|
|
|
# --- Admin auth ---
|
|
ADMIN_EMAIL=admin@supersunday.local
|
|
ADMIN_PASSWORD=changeme
|
|
JWT_SECRET=supersecret
|