chore: Update default server and Docker exposed port from 3000 to 3001.

This commit is contained in:
Marco Gallegos
2025-11-25 15:19:57 -06:00
parent 0547f58c65
commit 6eba59af4d
2 changed files with 2 additions and 2 deletions

View File

@@ -10,6 +10,6 @@ RUN npm install --omit=dev
# Copy the rest of the repository # Copy the rest of the repository
COPY . . COPY . .
EXPOSE 3000 EXPOSE 3001
CMD ["npm", "start"] CMD ["npm", "start"]

View File

@@ -4,7 +4,7 @@ const path = require("path");
const { exec } = require("child_process"); const { exec } = require("child_process");
const app = express(); const app = express();
const port = process.env.PORT || 3000; const port = process.env.PORT || 3001;
const rootDir = path.join(__dirname); const rootDir = path.join(__dirname);
// Serve static assets from the project root // Serve static assets from the project root