fix:更新cicd21

This commit is contained in:
Your Name 2026-06-22 15:27:29 +08:00
parent c89052bd9c
commit 46129474b4

View File

@ -158,8 +158,8 @@ async function bootstrap(): Promise<void> {
await ensureManualTable(app);
await ensureManualContentFormatColumn(app);
const port = parseInt(process.env.PORT ?? '3001', 10);
await app.listen(port);
const port = parseInt(process.env.PORT ?? '3003', 10);
await app.listen(port,'0.0.0.0');
Logger.log(`🚀 后端服务已启动: http://localhost:${port}`, 'Bootstrap');
Logger.log(`📘 Swagger 文档地址: http://localhost:${port}/api-docs`, 'Bootstrap');
}