17 lines
551 B
Plaintext
17 lines
551 B
Plaintext
# Database credentials (used by both db and web services in docker-compose.yml)
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
POSTGRES_DB=qrmaster
|
|
|
|
# Note: DATABASE_URL and DIRECT_URL are auto-generated from POSTGRES_* vars in docker-compose.yml
|
|
# You don't need to set them here when using Docker Compose
|
|
NODE_ENV=production
|
|
PORT=3000
|
|
NEXTAUTH_URL=http://localhost:3000
|
|
NEXTAUTH_SECRET=CHANGE_ME
|
|
NEXT_PUBLIC_APP_URL=http://localhost:3000
|
|
GOOGLE_CLIENT_ID=
|
|
GOOGLE_CLIENT_SECRET=
|
|
REDIS_URL=redis://redis:6379
|
|
IP_SALT=CHANGE_ME_SALT
|
|
ENABLE_DEMO=true |