更新服务器地址和项目名称,移除不必要的客户端日志相关代码,添加阻止交易模型,调整端口号及相关文档内容

This commit is contained in:
richarjiang
2025-08-13 17:31:21 +08:00
parent 4f9d648a50
commit 3b1af29c63
20 changed files with 138 additions and 786 deletions

View File

@@ -43,15 +43,15 @@ async function bootstrap() {
// swigger
const config = new DocumentBuilder()
.setTitle('Love Tips API')
.setDescription('Love Tips API description')
.setTitle('Pilates API')
.setDescription('Pilates API description')
.setVersion('1.0')
.build();
const documentFactory = () => SwaggerModule.createDocument(app, config);
SwaggerModule.setup('api/docs', app, documentFactory);
const port = process.env.PORT ?? 3000;
const port = process.env.PORT ?? 3002;
await app.listen(port);
const appLogger = new Logger('Bootstrap');