37 lines
1.4 KiB
Text
37 lines
1.4 KiB
Text
# Public base URL used for canonical URLs, sitemap, robots.txt and absolute metadata.
|
|
# Local example: http://localhost:3010
|
|
# Production example: https://funktechnik-schubert.de
|
|
NEXT_PUBLIC_SITE_URL=
|
|
|
|
# Admin login email address. Required for /admin.
|
|
ADMIN_EMAIL=
|
|
|
|
# Admin login password. Required for /admin.
|
|
# Use a long unique password and never commit a real value.
|
|
ADMIN_PASSWORD=
|
|
|
|
# Secret for signing the HttpOnly admin session cookie. Required.
|
|
# Use a long random value, for example generated by: openssl rand -base64 48
|
|
ADMIN_SESSION_SECRET=
|
|
|
|
# Set to true in production behind HTTPS so admin cookies are Secure.
|
|
# Use false only for local HTTP development.
|
|
AUTH_COOKIE_SECURE=false
|
|
|
|
# Optional future server-side Olympus intake endpoint.
|
|
# Leave empty until the Olympus integration is explicitly implemented.
|
|
OLYMPUS_INTAKE_API_URL=
|
|
|
|
# Optional future server-side Olympus intake token.
|
|
# Leave empty until the Olympus integration is explicitly implemented.
|
|
OLYMPUS_INTAKE_API_TOKEN=
|
|
|
|
# Server-side Olympus base URL for public repair status links.
|
|
# Docker example when Hermes is reachable in the same network: http://hermes:8000
|
|
# Production example: https://olympus.example.internal
|
|
# This URL must be reachable by the Next.js server, not by the browser.
|
|
OLYMPUS_PUBLIC_STATUS_API_URL=
|
|
|
|
# Optional server-side token for future protected status API access.
|
|
# Leave empty for Olympus v0.8.1 unless the endpoint is protected later.
|
|
OLYMPUS_PUBLIC_STATUS_API_TOKEN=
|