Compare commits
No commits in common. "32bfec36831a7ed0cee6b19ac358bf52b82b591d" and "d0e812ae70b38033f4175e4e7dc44c2f4ef7d1ef" have entirely different histories.
32bfec3683
...
d0e812ae70
@ -15,7 +15,11 @@ SSO_PRIVATE_KEY = "CHANGE_ME"
|
||||
SSO_PUBLIC_KEY = "CHANGE_ME"
|
||||
|
||||
# OAuth settings
|
||||
OAUTH_CODE_VERIFIER = "CHANGE_ME"
|
||||
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"
|
Loading…
Reference in New Issue
Block a user