web/quotes: take discord settings from secrets
This commit is contained in:
parent
b7574660de
commit
b0993ffd70
1 changed files with 13 additions and 0 deletions
|
@ -13,3 +13,16 @@ DATABASES = {
|
||||||
"NAME": "quotesdb",
|
"NAME": "quotesdb",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SOCIALACCOUNT_PROVIDERS = {
|
||||||
|
"discord": {
|
||||||
|
"APP": {
|
||||||
|
"client_id": os.environ["DISCORD_CLIENT_ID"],
|
||||||
|
"secret": os.environ["DISCORD_SECRET"],
|
||||||
|
},
|
||||||
|
"SCOPE": [
|
||||||
|
"identify",
|
||||||
|
"email",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue