add pipeline ci/cd

This commit is contained in:
2025-10-08 23:40:25 +07:00
parent 8f090e9ce6
commit 5a03d0c0fa
3 changed files with 221 additions and 1 deletions
+4 -1
View File
@@ -8,7 +8,7 @@ type OpenApiDocumentation = Omit<Partial<OpenAPIV3.Document<OpenApiDocWithTagGro
export const swaggerPlugin = openapi({
path: '/swagger',
provider: 'scalar',
provider: 'swagger-ui',
mapJsonSchema: {
zod: z.toJSONSchema,
},
@@ -64,4 +64,7 @@ export const swaggerPlugin = openapi({
},
},
} as OpenApiDocumentation,
exclude: {
paths: ['/live', '/ready', '/'],
},
})