Skip to content
Snippets Groups Projects
.env 1.21 KiB
Newer Older
Reiter, Christoph's avatar
wip
Reiter, Christoph committed
# In all environments, the following files are loaded if they exist,
# the later taking precedence over the former:
#
#  * .env                contains default values for the environment variables needed by the app
#  * .env.local          uncommitted file with local overrides
#  * .env.$APP_ENV       committed environment-specific defaults
#  * .env.$APP_ENV.local uncommitted environment-specific overrides
#
# Real environment variables win over .env files.
#
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
#
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration

###> symfony/framework-bundle ###
Reiter, Christoph's avatar
wip
Reiter, Christoph committed
APP_ENV=dev
Reiter, Christoph's avatar
Reiter, Christoph committed
APP_SECRET=
###< symfony/framework-bundle ###
Reiter, Christoph's avatar
wip
Reiter, Christoph committed

###> dbp/relay-core-bundle ###
CORE_API_BUILDINFO=unknown
CORE_API_BUILDINFO_URL=#
###< dbp/relay-core-bundle ###

###> dbp/relay-auth-bundle ###
AUTH_SERVER_URL=https://auth.your-server/auth/realms/your-realm
AUTH_APIDOCS_KEYCLOAK_SERVER=https://auth.your-server/auth
AUTH_APIDOCS_KEYCLOAK_REALM=your-realm
AUTH_APIDOCS_KEYCLOAK_CLIENT_ID=api-docs-client-id
###< dbp/relay-auth-bundle ###
Reiter, Christoph's avatar
wip
Reiter, Christoph committed