diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-14 19:01:40 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-14 19:01:40 +0100 |
commit | ccd0609002123ad583832d9ea944b41a67f04757 (patch) | |
tree | bea77a72fc715f3d29fe2b7c6e885f4505fe5548 /instance | |
parent | fixed generated command to fetch newly created feed. (diff) | |
download | newspipe-ccd0609002123ad583832d9ea944b41a67f04757.tar.gz newspipe-ccd0609002123ad583832d9ea944b41a67f04757.tar.bz2 newspipe-ccd0609002123ad583832d9ea944b41a67f04757.zip |
Updated default configuration file.
Diffstat (limited to 'instance')
-rw-r--r-- | instance/production.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/instance/production.py b/instance/production.py index 46f16523..d57520b8 100644 --- a/instance/production.py +++ b/instance/production.py @@ -6,7 +6,6 @@ import os # Webserver HOST = "127.0.0.1" -PLATFORM_URL = "" PORT = 5000 DEBUG = False API_ROOT = "/api/v2.0" @@ -47,6 +46,7 @@ MAIL_USERNAME = None MAIL_PASSWORD = None MAIL_DEFAULT_SENDER = "admin@admin.localhost" TOKEN_VALIDITY_PERIOD = 3600 +PLATFORM_URL = "https://www.newspipe.org" # Misc BASE_DIR = os.path.abspath(os.path.dirname(".")) |