From 7331bc7824f1bf42cbc10a5d371c9bc424811802 Mon Sep 17 00:00:00 2001 From: Adam Saudagar Date: Sun, 5 Feb 2023 19:17:00 +0530 Subject: [PATCH] updated urls for new server --- fishy/web/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fishy/web/urls.py b/fishy/web/urls.py index 6c5d012..072bba4 100644 --- a/fishy/web/urls.py +++ b/fishy/web/urls.py @@ -3,9 +3,9 @@ import sys if "--local-server" in sys.argv: domain = "http://127.0.0.1:5000" elif "--test-server" in sys.argv: - domain = "https://fishyeso-test.herokuapp.com" + domain = "https://fishyeso-test.definex.in" else: - domain = "https://fishyeso.herokuapp.com" + domain = "https://fishyeso.definex.in" user = domain + "/api/user" notify = domain + "/api/notify"