change port from 3000 to 4000

This commit is contained in:
shoopea
2026-08-30 18:20:26 +02:00
parent 66fe09fc83
commit 874819a9e9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -12,5 +12,5 @@ RUN npm install -g nodemon
# Bundle app source
COPY . .
RUN mkdir -p /usr/src/app/db
EXPOSE 3000
EXPOSE 4000
CMD [ "node", "app.js" ]
+1 -1
View File
@@ -19,7 +19,7 @@ const gameRoutes = gameModule.router;
const serverRoutes = require('./routes/server');
const authRoutes = require('./routes/auth');
const port = 3000;
const port = 4000;
// Serve static files from the 'public' directory
app.use(express.static('public'));