mirror of
https://github.com/ChanX21/Sigillum
synced 2026-04-21 15:47:55 +00:00
Update default port from 5001 to 5002 in server initialization
This commit is contained in:
parent
e98f980b4b
commit
fee5eaa0e6
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@ import apiRoutes from './routes/index.js';
|
|||
|
||||
// Initialize Express app
|
||||
const app: Application = express();
|
||||
const PORT: number = parseInt(process.env.PORT || '5001', 10);
|
||||
const PORT: number = parseInt(process.env.PORT || '5002', 10);
|
||||
|
||||
// Middlewares
|
||||
app.use(cors({
|
||||
|
|
|
|||
Loading…
Reference in a new issue