summary refs log tree commit diff
path: root/src/gateway
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-09-29 22:11:08 +0200
committerRory& <root@rory.gay>2025-09-29 22:18:38 +0200
commit0e495bc31d475bfb56ddac5db226a0302bd4a1e2 (patch)
tree9556b378f8085e6c4907c6e1d0df98dcff951134 /src/gateway
parentBump nodejs to 24 (diff)
downloadserver-ts-0e495bc31d475bfb56ddac5db226a0302bd4a1e2.tar.xz
Silence, dotenv, we dont want your ads
Diffstat (limited to 'src/gateway')
-rw-r--r--src/gateway/Server.ts2
-rw-r--r--src/gateway/start.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gateway/Server.ts b/src/gateway/Server.ts

index 79206e4a..d057c720 100644 --- a/src/gateway/Server.ts +++ b/src/gateway/Server.ts
@@ -18,7 +18,7 @@ import "missing-native-js-functions"; import dotenv from "dotenv"; -dotenv.config(); +dotenv.config({ quiet: true }); import { closeDatabase, Config, diff --git a/src/gateway/start.ts b/src/gateway/start.ts
index b04048e1..8df38edc 100644 --- a/src/gateway/start.ts +++ b/src/gateway/start.ts
@@ -23,7 +23,7 @@ process.on("unhandledRejection", console.error); import { Server } from "./Server"; import { config } from "dotenv"; -config(); +config({ quiet: true }); let port = Number(process.env.PORT); if (isNaN(port)) port = 3002;