41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
# =================================================================
|
|
# Authentication (Auth.js)
|
|
# =================================================================
|
|
|
|
AUTH_SECRET=change-this-to-a-long-random-secret
|
|
|
|
|
|
# =================================================================
|
|
# Database (PostgreSQL)
|
|
# =================================================================
|
|
|
|
DATABASE_URL=postgres://postgres:postgres@localhost:5432/training_system
|
|
|
|
|
|
# =================================================================
|
|
# Build Configuration
|
|
# =================================================================
|
|
|
|
BUILD_STANDALONE=
|
|
|
|
|
|
# =================================================================
|
|
# Error Tracking (Sentry)
|
|
# =================================================================
|
|
|
|
NEXT_PUBLIC_SENTRY_DSN=
|
|
NEXT_PUBLIC_SENTRY_ORG=
|
|
NEXT_PUBLIC_SENTRY_PROJECT=
|
|
SENTRY_AUTH_TOKEN=
|
|
NEXT_PUBLIC_SENTRY_DISABLED="false"
|
|
|
|
|
|
# =================================================================
|
|
# Notes
|
|
# =================================================================
|
|
|
|
# 1. Rename this file to `.env.local` for local development
|
|
# 2. Do not commit real secrets
|
|
# 3. AUTH_SECRET is required in production
|
|
# 4. DATABASE_URL must point to a reachable PostgreSQL instance
|