24 lines
583 B
Python
24 lines
583 B
Python
"""
|
|
Author: Michel Peltriaux
|
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
|
Contact: michel.peltriaux@sgdnord.rlp.de
|
|
Created on: 31.01.22
|
|
|
|
"""
|
|
import random
|
|
import string
|
|
|
|
# SSO settings
|
|
SSO_SERVER_BASE = "http://127.0.0.1:8000/"
|
|
SSO_SERVER = f"{SSO_SERVER_BASE}sso/"
|
|
SSO_PRIVATE_KEY = "CHANGE_ME"
|
|
SSO_PUBLIC_KEY = "CHANGE_ME"
|
|
|
|
# OAuth
|
|
OAUTH_CODE_VERIFIER = ''.join(
|
|
random.choice(
|
|
string.ascii_uppercase + string.digits
|
|
) for _ in range(random.randint(43, 128))
|
|
)
|
|
OAUTH_CLIENT_ID = "CHANGE_ME"
|
|
OAUTH_CLIENT_SECRET = "CHANGE_ME" |