Skip to content
Snippets Groups Projects
Commit ea480ab9 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Move comments into the yaml config

We can only add comments in the yaml config via flex and in the .env file, keep it consistent.
parent 482e4d88
No related branches found
No related tags found
No related merge requests found
Pipeline #64169 failed
......@@ -18,8 +18,6 @@ APP_SECRET=
# Auth related
AUTH_SERVER_URL=https://auth.your-server/auth/realms/your-realm
# (optional) This allows you to log into the auto generated OpenAPI documentation page
# which you can see when visiting the server with a browser. Leave empty to disable.
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:
server_url: '%env(AUTH_SERVER_URL)%'
# OpenAPI Docs Keycloak Settings
# (optional) This allows you to log into the auto generated OpenAPI documentation page
# which you can see when visiting the server with a browser. Remove to disable.
frontend_keycloak_server: '%env(AUTH_APIDOCS_KEYCLOAK_SERVER)%'
frontend_keycloak_realm: '%env(AUTH_APIDOCS_KEYCLOAK_REALM)%'
frontend_keycloak_client_id: '%env(AUTH_APIDOCS_KEYCLOAK_CLIENT_ID)%'
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment