16 lines
389 B
Bash
16 lines
389 B
Bash
# DATABASE
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
POSTGRES_HOST=db
|
|
POSTGRES_PORT=5432
|
|
POSTGRES_DB=postgres
|
|
|
|
# PRISMA
|
|
DATABASE_URL="postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}?schema=public"
|
|
|
|
# FRONTEND
|
|
NODE_ENV=production
|
|
DEMO_MODE=false
|
|
DOMAIN=localhost
|
|
AUTH_TRUST_HOST="http://localhost"
|
|
AUTH_SECRET=your_secret_key_here |