aboutsummaryrefslogtreecommitdiff
path: root/instance
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-14 19:01:40 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-14 19:01:40 +0100
commitccd0609002123ad583832d9ea944b41a67f04757 (patch)
treebea77a72fc715f3d29fe2b7c6e885f4505fe5548 /instance
parentfixed generated command to fetch newly created feed. (diff)
downloadnewspipe-ccd0609002123ad583832d9ea944b41a67f04757.tar.gz
newspipe-ccd0609002123ad583832d9ea944b41a67f04757.tar.bz2
newspipe-ccd0609002123ad583832d9ea944b41a67f04757.zip
Updated default configuration file.
Diffstat (limited to 'instance')
-rw-r--r--instance/production.py2
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("."))
bgstack15