mirror of
https://github.com/simple-login/app.git
synced 2025-02-24 07:43:54 +08:00
Add LANDING_PAGE_URL param
This commit is contained in:
parent
4789e439db
commit
a54ac0b3da
2 changed files with 6 additions and 1 deletions
|
@ -221,3 +221,5 @@ if LOCAL_FILE_UPLOAD:
|
||||||
if not os.path.exists(UPLOAD_DIR):
|
if not os.path.exists(UPLOAD_DIR):
|
||||||
print("Create upload dir")
|
print("Create upload dir")
|
||||||
os.makedirs(UPLOAD_DIR)
|
os.makedirs(UPLOAD_DIR)
|
||||||
|
|
||||||
|
LANDING_PAGE_URL = os.environ.get("LANDING_PAGE_URL") or "https://simplelogin.io"
|
|
@ -117,3 +117,6 @@ FACEBOOK_CLIENT_SECRET=to_fill
|
||||||
# By default, files are uploaded to s3
|
# By default, files are uploaded to s3
|
||||||
# Set this variable to use the local "static/upload/" directory instead
|
# Set this variable to use the local "static/upload/" directory instead
|
||||||
# LOCAL_FILE_UPLOAD=true
|
# LOCAL_FILE_UPLOAD=true
|
||||||
|
|
||||||
|
# The landing page
|
||||||
|
# LANDING_PAGE_URL=https://simplelogin.io
|
Loading…
Reference in a new issue