25 lines
828 B
Text
25 lines
828 B
Text
# Monochrome Docker Configuration
|
|
# Copy to .env and edit: cp .env.example .env
|
|
|
|
# Monochrome
|
|
MONOCHROME_PORT=3000
|
|
MONOCHROME_DEV_PORT=5173
|
|
|
|
# Auth Gate (server-side authentication)
|
|
# Set AUTH_ENABLED=true to enable the auth gate entirely (login required)
|
|
AUTH_ENABLED=false
|
|
AUTH_SECRET=change-me-to-a-random-string
|
|
APPWRITE_ENDPOINT=https://auth.yourdomain.com/v1
|
|
APPWRITE_PROJECT_ID=auth-for-monochrome
|
|
# Optional: toggle login providers (defaults to true when unset)
|
|
# AUTH_GOOGLE_ENABLED=true
|
|
# AUTH_EMAIL_ENABLED=true
|
|
# Optional: set PocketBase URL (hides the field in settings when set)
|
|
# POCKETBASE_URL=https://data.samidy.xyz
|
|
# SESSION_MAX_AGE=604800000 # 7 days in ms (default)
|
|
|
|
# PocketBase (only used with --profile pocketbase)
|
|
POCKETBASE_PORT=8090
|
|
PB_ADMIN_EMAIL=admin@example.com
|
|
PB_ADMIN_PASSWORD=changeme
|
|
TZ=UTC
|