fix(referral-service): 修复端口配置使用 APP_PORT

This commit is contained in:
Developer 2025-12-02 10:47:46 -08:00
parent d5e7da4828
commit 24c7be6a8d
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ async function bootstrap() {
logger.log('Swagger documentation available at /api/docs');
}
const port = process.env.PORT || 3002;
const port = parseInt(process.env.APP_PORT || '3004', 10);
await app.listen(port);
logger.log(`Referral Service is running on port ${port}`);
}