fix(authorization-service): 修复端口配置默认值为 3009

This commit is contained in:
Developer 2025-12-02 10:48:33 -08:00
parent 24c7be6a8d
commit 99589f666a
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ async function bootstrap() {
const document = SwaggerModule.createDocument(app, config)
SwaggerModule.setup('api/docs', app, document)
const port = process.env.APP_PORT || 3002
const port = parseInt(process.env.APP_PORT || '3009', 10)
await app.listen(port)
logger.log(`Authorization Service is running on port ${port}`)