Change port
All checks were successful
CI for GGS-CRON / build-and-test (push) Successful in 2m58s
CI for GGS-CRON / build-docker (push) Successful in 1m15s

This commit is contained in:
Ittipat Lusuk 2025-08-08 16:38:46 +07:00
parent 224a110a18
commit 2d6c3273cb
2 changed files with 3 additions and 3 deletions

View file

@ -13,8 +13,8 @@ RUN npm install
COPY . . COPY . .
ENV DEBUG=server:* ENV DEBUG=server:*
ENV PORT=36530 ENV PORT=36531
EXPOSE 36530 EXPOSE 36531
CMD [ "npm","start" ] CMD [ "npm","start" ]

View file

@ -1,6 +1,6 @@
require("dotenv").config(); require("dotenv").config();
module.exports = { module.exports = {
PORT: 36530 || process.env.PORT, PORT: 36531 || process.env.PORT,
DEBUG: true || process.env.DEBUG, DEBUG: true || process.env.DEBUG,
}; };