mirror of
https://github.com/simple-login/app.git
synced 2025-02-23 15:23:27 +08:00
Add APPLE_API_SECRET param
This commit is contained in:
parent
88bf608cf4
commit
7b965e4121
2 changed files with 7 additions and 1 deletions
|
@ -243,3 +243,6 @@ with open(get_abs_path(DISPOSABLE_FILE_PATH), "r") as f:
|
||||||
DISPOSABLE_EMAIL_DOMAINS = [
|
DISPOSABLE_EMAIL_DOMAINS = [
|
||||||
d for d in DISPOSABLE_EMAIL_DOMAINS if not d.startswith("#")
|
d for d in DISPOSABLE_EMAIL_DOMAINS if not d.startswith("#")
|
||||||
]
|
]
|
||||||
|
|
||||||
|
# Used when querying info on Apple API
|
||||||
|
APPLE_API_SECRET = os.environ.get("APPLE_API_SECRET")
|
|
@ -123,3 +123,6 @@ FACEBOOK_CLIENT_SECRET=to_fill
|
||||||
|
|
||||||
# The landing page
|
# The landing page
|
||||||
# LANDING_PAGE_URL=https://simplelogin.io
|
# LANDING_PAGE_URL=https://simplelogin.io
|
||||||
|
|
||||||
|
# Used when querying info on Apple API
|
||||||
|
# APPLE_API_SECRET=secret
|
Loading…
Reference in a new issue