.env.example 711 B

12345678910111213141516171819202122
  1. # Entra ID / OIDC
  2. ENTRA_TENANT_ID=
  3. ENTRA_CLIENT_ID=
  4. ENTRA_CLIENT_SECRET=
  5. # Base URL the app is reachable at (no trailing slash).
  6. # Used to build the OIDC redirect URI {APP_BASE_URL}/auth/callback
  7. APP_BASE_URL=http://localhost:8080
  8. # Random string (>=32 bytes). Used to salt the session cookie name / CSRF tokens.
  9. SESSION_SECRET=
  10. # Path to the SQLite database file inside the container. Leave as-is unless
  11. # you have a specific reason to change it. The parent dir is the mounted
  12. # volume (/var/www/data).
  13. DB_PATH=/var/www/data/app.sqlite
  14. # Session handler files directory.
  15. SESSION_PATH=/var/www/data/sessions
  16. # 'production' disables verbose error output. Anything else is treated as dev.
  17. APP_ENV=production