From 5b3481a45eb6fb7aaec0cf22fefecda8d2addcbf Mon Sep 17 00:00:00 2001 From: Mark Pascal Sanders <mark.sanders@rwth-aachen.de> Date: Thu, 19 Dec 2024 14:45:05 +0100 Subject: [PATCH] Update const.ts --- src/const.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/const.ts b/src/const.ts index cc7730d..adf5947 100644 --- a/src/const.ts +++ b/src/const.ts @@ -2,8 +2,8 @@ export const DEMO_MODE = true; export const EXPERIMENTAL_MODE = true; export const DB_DISABLED = true; export const DEV_MODE = process.env.NODE_ENV === 'development'; -export const BASE_URL = DEV_MODE ? "http://localhost:3000" : "https://soil.cluster.wzl-mq.rwth-aachen.de/"; -export const DATA_BACKEND = DEV_MODE ? "http://localhost:8402" : "https://soil-data.cluster.wzl-mq.rwth-aachen.de/" +export const BASE_URL = DEV_MODE ? "http://localhost:3000" : "https://soil.cluster.wzl-mq.rwth-aachen.de"; +export const DATA_BACKEND = DEV_MODE ? "http://localhost:8402" : "https://soil-data.cluster.wzl-mq.rwth-aachen.de" // export const SOIL_BACKEND = DEV_MODE ? "http://localhost:8001" : "https://iot.wzl-mq.rwth-aachen.de/soil-backend" -export const SOIL_BACKEND = DEV_MODE ? "http://localhost:8412" : "https://soil-backend.cluster.wzl-mq.rwth-aachen.de/" +export const SOIL_BACKEND = DEV_MODE ? "http://localhost:8412" : "https://soil-backend.cluster.wzl-mq.rwth-aachen.de" // export const SOIL_BACKEND = DEV_MODE ? "https://iot.wzl-mq.rwth-aachen.de/soil-backend" : "https://iot.wzl-mq.rwth-aachen.de/soil-backend" \ No newline at end of file -- GitLab