41 lines
973 B
Plaintext
41 lines
973 B
Plaintext
PORT=3000
|
|
|
|
# Wenn MySQL auf deinem Windows-/Host-System laeuft, nutze mit Docker Desktop:
|
|
# DB_HOST=host.docker.internal
|
|
DB_HOST=host.docker.internal
|
|
DB_PORT=3306
|
|
DB_USERNAME=listify
|
|
DB_PASSWORD=change-me
|
|
DB_DATABASE=listify
|
|
DB_LOGGING=all
|
|
DB_LOG_PARAMETERS=false
|
|
DB_LOG_MAX_PARAM_LENGTH=500
|
|
DB_SLOW_QUERY_THRESHOLD_MS=500
|
|
|
|
JWT_ACCESS_SECRET=change-me-access-secret
|
|
JWT_REFRESH_SECRET=change-me-refresh-secret
|
|
|
|
# Browser-URL, unter der der Container erreichbar ist.
|
|
CLIENT_URL=http://localhost:8080
|
|
|
|
OIDC_ISSUER=https://id.example.com
|
|
OIDC_CLIENT_ID=listify
|
|
OIDC_CLIENT_SECRET=
|
|
OIDC_SCOPES=openid profile email groups
|
|
OIDC_REDIRECT_URI=http://localhost:8080/auth/sso/callback
|
|
OIDC_POST_LOGOUT_REDIRECT_URI=http://localhost:8080/login
|
|
|
|
MISTRAL_API_KEY=
|
|
MISTRAL_AGENT_ID=
|
|
|
|
MAIL_ENABLED=true
|
|
SMTP_HOST=host.docker.internal
|
|
SMTP_PORT=1025
|
|
SMTP_SECURE=false
|
|
SMTP_USER=
|
|
SMTP_PASSWORD=
|
|
MAIL_FROM=no-reply@listify.local
|
|
MAIL_FROM_NAME=Listify
|
|
|
|
LIST_REMINDER_POLL_INTERVAL_MS=60000
|