20 lines
681 B
Plaintext
20 lines
681 B
Plaintext
# NextAuth Configuration
|
|
NEXTAUTH_SECRET=change-this-secret-in-production
|
|
NEXTAUTH_URL=http://localhost:3000
|
|
|
|
# PostgreSQL Configuration
|
|
POSTGRES_USER=gotgaming
|
|
POSTGRES_PASSWORD=change-this-in-production
|
|
POSTGRES_DB=gotgaming
|
|
POSTGRES_HOST=got-postgres
|
|
POSTGRES_PORT=5432
|
|
|
|
# Database URL (construite automatiquement si non définie)
|
|
# Si vous définissez cette variable, elle sera utilisée telle quelle
|
|
# Sinon, elle sera construite à partir des variables POSTGRES_* ci-dessus
|
|
# DATABASE_URL=postgresql://gotgaming:change-this-in-production@got-postgres:5432/gotgaming?schema=public
|
|
|
|
# Docker Volumes (optionnel)
|
|
POSTGRES_DATA_PATH=./data/postgres
|
|
UPLOADS_PATH=./public/uploads
|