changed discord container port

This commit is contained in:
PxlLoewe
2025-06-05 01:20:57 -07:00
parent 6c9942a984
commit cd8594e0c5
3 changed files with 2 additions and 5 deletions

View File

@@ -2,7 +2,6 @@ import "dotenv/config";
import express from "express";
import { createServer } from "http";
import router from "routes/router";
import cookieParser from "cookie-parser";
import cors from "cors";
import "modules/chron";
@@ -11,7 +10,6 @@ const server = createServer(app);
app.use(cors());
app.use(express.json());
app.use(cookieParser());
app.use(router);
server.listen(process.env.DISCORD_SERVER_PORT, () => {

View File

@@ -12,7 +12,6 @@
"devDependencies": {
"@repo/db": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.18",
"@types/express": "^5.0.2",
"@types/node": "^22.15.29",