2026-01-18 10:35:27 +08:00
|
|
|
# Server
|
|
|
|
|
SERVER_PORT=3001
|
|
|
|
|
SERVER_BASE_URL=http://localhost:3001
|
|
|
|
|
|
|
|
|
|
# Postgres (server-side only)
|
|
|
|
|
DATABASE_HOST=127.0.0.1
|
|
|
|
|
DATABASE_PORT=5432
|
|
|
|
|
DATABASE_NAME=postgres
|
|
|
|
|
DATABASE_USER=postgres
|
|
|
|
|
DATABASE_PASSWORD=change_me
|
|
|
|
|
DATABASE_SSL=false
|
|
|
|
|
|
|
|
|
|
# Auth
|
|
|
|
|
AUTH_JWT_SECRET=change_me_long_random
|
2026-01-18 23:33:31 +08:00
|
|
|
|
|
|
|
|
# Admin (only this email is treated as admin)
|
|
|
|
|
ADMIN_EMAIL=admin@example.com
|