fix(referral-service): 修复端口配置使用 APP_PORT
This commit is contained in:
parent
d5e7da4828
commit
24c7be6a8d
|
|
@ -47,7 +47,7 @@ async function bootstrap() {
|
||||||
logger.log('Swagger documentation available at /api/docs');
|
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);
|
await app.listen(port);
|
||||||
logger.log(`Referral Service is running on port ${port}`);
|
logger.log(`Referral Service is running on port ${port}`);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue