dynamic naming

This commit is contained in:
Thies Mueller
2026-06-20 00:40:59 +02:00
parent 03e1c48832
commit 48d7e8ffa3
3 changed files with 19 additions and 5 deletions
+5 -3
View File
@@ -1,7 +1,9 @@
const CONFIG = {
RESULTS_URL: "https://example.com/api/results",
RENNPLAN_URL: "https://example.com/api/rennplan",
MESSAGE_URL: "https://example.com/api/message",
EVENT_NAME: "Beispiel Regatta",
RESULTS_URL: "https://api.demo.regattatech.de/api/v1/results/current",
RENNPLAN_URL: "https://api.demo.regattatech.de/api/v1/rennplan/current",
MESSAGE_URL: "https://api.demo.regattatech.de/api/v1/message",
REFRESH_INTERVAL: 30000 // 30 Sekunden
};