aboutsummaryrefslogtreecommitdiff
path: root/instance/production.py
diff options
context:
space:
mode:
Diffstat (limited to 'instance/production.py')
-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