* updates requirements.txt * drops django-simple-sso from codebase and requirements.txt
17 lines
395 B
Python
17 lines
395 B
Python
"""
|
|
Author: Michel Peltriaux
|
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
|
Contact: michel.peltriaux@sgdnord.rlp.de
|
|
Created on: 31.01.22
|
|
|
|
"""
|
|
|
|
# SSO settings
|
|
SSO_SERVER_BASE = "http://127.0.0.1:8000/"
|
|
SSO_SERVER = f"{SSO_SERVER_BASE}sso/"
|
|
|
|
# OAuth settings
|
|
OAUTH_CODE_VERIFIER = "CHANGE_ME"
|
|
|
|
OAUTH_CLIENT_ID = "CHANGE_ME"
|
|
OAUTH_CLIENT_SECRET = "CHANGE_ME" |