Remove GATEWAY/CDN env variables in favor of single source of truth

This commit is contained in:
Rory&
2025-10-23 14:10:46 +02:00
parent 2a8d4ce3fd
commit 0dd12d0380
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ router.get(
(req: Request, res: Response) => {
const { endpointPublic } = Config.get().gateway;
res.json({
url: endpointPublic || process.env.GATEWAY || "ws://localhost:3001",
url: endpointPublic,
shards: 1,
session_start_limit: {
total: 1000,
+1 -1
View File
@@ -34,7 +34,7 @@ router.get(
(req: Request, res: Response) => {
const { endpointPublic } = Config.get().gateway;
res.json({
url: endpointPublic || process.env.GATEWAY || "ws://localhost:3001",
url: endpointPublic,
});
},
);