51 lines
2.2 KiB
Text
51 lines
2.2 KiB
Text
# ==============================================================================
|
|
# REQUIRED - Generate with: openssl rand -base64 36 | tr -d '\n'
|
|
# ==============================================================================
|
|
PG_PASS=
|
|
AUTHENTIK_SECRET_KEY=
|
|
ENCRYPTION_KEY=
|
|
|
|
# ==============================================================================
|
|
# HOST CONFIGURATION
|
|
# Set this to your machine's IP or domain for mobile/network access
|
|
# Examples: localhost, 192.168.1.100, kaboot.example.com
|
|
# ==============================================================================
|
|
KABOOT_HOST=localhost
|
|
KABOOT_FRONTEND_PORT=5173
|
|
|
|
# ==============================================================================
|
|
# OPTIONAL - Authentik Database
|
|
# ==============================================================================
|
|
PG_USER=authentik
|
|
PG_DB=authentik
|
|
|
|
# ==============================================================================
|
|
# OPTIONAL - Ports
|
|
# ==============================================================================
|
|
AUTHENTIK_PORT_HTTP=9000
|
|
AUTHENTIK_PORT_HTTPS=9443
|
|
KABOOT_BACKEND_PORT=3001
|
|
|
|
# ==============================================================================
|
|
# OPTIONAL - Authentik Settings
|
|
# ==============================================================================
|
|
AUTHENTIK_ERROR_REPORTING=false
|
|
|
|
# ==============================================================================
|
|
# OPTIONAL - Authentik Bootstrap (for automated setup)
|
|
# Generate with: openssl rand -base64 36 | tr -d '\n'
|
|
# ==============================================================================
|
|
AUTHENTIK_BOOTSTRAP_PASSWORD=
|
|
AUTHENTIK_BOOTSTRAP_TOKEN=
|
|
|
|
# ==============================================================================
|
|
# OPTIONAL - Logging
|
|
# ==============================================================================
|
|
LOG_REQUESTS=false
|
|
|
|
# ==============================================================================
|
|
# OPTIONAL - System AI (Gemini API Key for server-side quiz generation)
|
|
# If set, users can generate quizzes using "System AI" without their own key.
|
|
# Get a key at: https://aistudio.google.com/apikey
|
|
# ==============================================================================
|
|
GEMINI_API_KEY=
|