26 lines
498 B
Bash
26 lines
498 B
Bash
# =========================
|
|
# Server
|
|
# =========================
|
|
PORT=3000
|
|
NODE_ENV=development
|
|
|
|
# =========================
|
|
# Admin panel credentials
|
|
# =========================
|
|
ADMIN_USERNAME=admin
|
|
ADMIN_PASSWORD=admin
|
|
|
|
# =========================
|
|
# PostgreSQL (Docker)
|
|
# =========================
|
|
DB_HOST=postgres
|
|
DB_PORT=5432
|
|
DB_NAME=testdb
|
|
DB_USER=postgres
|
|
DB_PASSWORD=postgres
|
|
|
|
# =========================
|
|
# Session
|
|
# =========================
|
|
SESSION_SECRET=super_secret_key_change_this_123
|