Files
lasuite-messages/deploy/env/backend.e2e
T
Sylvain Zimmerandjbpenrath f4d235825f ️(devx) improve "make bootstrap" setup time and overall DevX
Notably, we try to reduce disk usage by standardizind on common
base Docker images. We also improve node_modules by reducing
duplicate dependencies and install speed.
2026-07-22 11:34:27 +02:00

35 lines
1.1 KiB
Plaintext

# App database configuration
DB_HOST=postgresql
# Redis configuration
REDIS_URL=redis://redis:6379
CELERY_BROKER_URL=redis://redis:6379
# OpenSearch configuration
OPENSEARCH_URL=http://opensearch:9200
# OIDC
OIDC_OP_JWKS_ENDPOINT=http://keycloak:8802/realms/messages/protocol/openid-connect/certs
OIDC_OP_AUTHORIZATION_ENDPOINT=http://keycloak:8802/realms/messages/protocol/openid-connect/auth
OIDC_OP_TOKEN_ENDPOINT=http://keycloak:8802/realms/messages/protocol/openid-connect/token
OIDC_OP_USER_ENDPOINT=http://keycloak:8802/realms/messages/protocol/openid-connect/userinfo
OIDC_REDIRECT_ALLOWED_HOSTS=["http://keycloak:8802", "http://proxy"]
LOGIN_REDIRECT_URL=http://proxy
LOGIN_REDIRECT_URL_FAILURE=http://proxy
LOGOUT_REDIRECT_URL=http://proxy
# Keycloak
KEYCLOAK_URL=http://keycloak:8802
# Object storage configuration
STORAGE_MESSAGE_IMPORTS_ENDPOINT_URL=http://objectstorage:9000
AWS_S3_DOMAIN_REPLACE=
# Email configuration (use mailcatcher from main services or disable)
EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend
# Debug
DJANGO_DEBUG=True