From 8aef4deecc0e64ac294331ba1e13d57b7e6b592c Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Wed, 3 Jun 2026 03:10:03 -0700 Subject: clean up old deployment files --- server/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server') diff --git a/server/index.ts b/server/index.ts index bf4cafd..7b4f1d5 100644 --- a/server/index.ts +++ b/server/index.ts @@ -10,7 +10,7 @@ const app = express(); app.use(cors()); app.use(express.json()); -const PORT = process.env.PORT || 3001; +const SERVER_PORT = process.env.SERVER_PORT || 3001; const SALT = process.env.HEARDLE_SALT ?? 'changeme'; function getDailyKey(): Buffer { @@ -48,4 +48,4 @@ if (process.env.NODE_ENV === 'production') { }); } -app.listen(PORT, () => console.log(`Server running on :${PORT}`)); +app.listen(SERVER_PORT, () => console.log(`Server running on :${SERVER_PORT}`)); -- cgit v1.2.3