Skip to content
Snippets Groups Projects
Commit 890f6303 authored by Nico Vermaas's avatar Nico Vermaas
Browse files

make KEYCLOAK_URL an env var

parent 68196aa8
No related branches found
No related tags found
1 merge request!278Astronauth
...@@ -222,10 +222,15 @@ AUTHENTICATION_BACKENDS = [ ...@@ -222,10 +222,15 @@ AUTHENTICATION_BACKENDS = [
"allauth.account.auth_backends.AuthenticationBackend", "allauth.account.auth_backends.AuthenticationBackend",
] ]
try:
KEYCLOAK_URL = os.environ['KEYCLOAK_URL']
except:
KEYCLOAK_URL = 'https://sdc-dev.astron.nl/auth'
SOCIALACCOUNT_PROVIDERS = { SOCIALACCOUNT_PROVIDERS = {
'keycloak': { 'keycloak': {
'KEYCLOAK_URL': 'https://sdc-dev.astron.nl/auth', # replace by https://keycloak.astron.nl/auth for production 'KEYCLOAK_URL': KEYCLOAK_URL,
'KEYCLOAK_REALM': 'SDC', # change this depending on which realm to use 'KEYCLOAK_REALM': 'SDC',
'SCOPE': ['openid', 'profile', 'email'] 'SCOPE': ['openid', 'profile', 'email']
} }
} }
......
...@@ -24,13 +24,4 @@ DATABASES = { ...@@ -24,13 +24,4 @@ DATABASES = {
AUTH_PASSWORD_VALIDATORS = [] AUTH_PASSWORD_VALIDATORS = []
# astronauth settings
SOCIALACCOUNT_PROVIDERS = {
'keycloak': {
'KEYCLOAK_URL': 'https://sdc-dev.astron.nl/auth', # replace by https://keycloak.astron.nl/auth for production
'KEYCLOAK_REALM': 'SDC', # change this depending on which realm to use
'SCOPE': ['openid', 'profile', 'email']
}
}
LOGIN_REDIRECT_URL = "http://localhost:8000/atdb" LOGIN_REDIRECT_URL = "http://localhost:8000/atdb"
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