This commit is contained in:
2026-07-16 09:53:14 +07:00
parent 0fc112a2e8
commit 29cec708a3
1236 changed files with 212848 additions and 0 deletions

40
env.example.txt Normal file
View File

@@ -0,0 +1,40 @@
# =================================================================
# 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