add variables to settings
This commit is contained in:
parent
2062c0c519
commit
ba53e461e8
|
@ -1,4 +1,8 @@
|
||||||
SECRET_KEY='$omeR@nd0mSecr3tKeyWith4V3ryL0ng$tring!?'
|
SECRET_KEY='$omeR@nd0mSecr3tKeyWith4V3ryL0ng$tring!?'
|
||||||
DEBUG=True
|
DEBUG=True
|
||||||
ALLOWED_HOSTS=.localhost,127.0.0.1
|
ALLOWED_HOSTS=.localhost,127.0.0.1
|
||||||
API_BASE_URL = 'https://api.examplea.org/'
|
API_BASE_URL = 'http://localhost:9080/api/'
|
||||||
|
STATIC_ROOT = 'musician/static/'
|
||||||
|
CLIENT_ID = "ZjYHcERGfUKo26y41VLI4KHz"
|
||||||
|
CLIENT_SECRET = "jjUfJq9vOomJaj8Zm5W6OweMG61wQ5G3VyKhBzxLqp5k5HVW"
|
||||||
|
OIDC_PROVIDER = "http://localhost:5000"
|
||||||
|
|
|
@ -175,6 +175,11 @@ URL_SAAS_OWNCLOUD = config('URL_SAAS_OWNCLOUD', None)
|
||||||
|
|
||||||
URL_SAAS_WORDPRESS = config('URL_SAAS_WORDPRESS', None)
|
URL_SAAS_WORDPRESS = config('URL_SAAS_WORDPRESS', None)
|
||||||
|
|
||||||
|
CLIENT_ID = config('CLIENT_ID')
|
||||||
|
|
||||||
|
CLIENT_SECRET = config('CLIENT_SECRET')
|
||||||
|
|
||||||
|
OIDC_PROVIDER = config('OIDC_PROVIDER')
|
||||||
|
|
||||||
# Managers: who should get notifications about services changes that
|
# Managers: who should get notifications about services changes that
|
||||||
# may require human actions (e.g. deleted mailboxes)
|
# may require human actions (e.g. deleted mailboxes)
|
||||||
|
|
Loading…
Reference in New Issue