37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
const swaggerJsDoc = require('swagger-jsdoc');
|
|
const swaggerUi = require('swagger-ui-express');
|
|
|
|
const swaggerOptions = {
|
|
swaggerDefinition: {
|
|
openapi: '3.0.0', // OpenAPI 3.0 specification
|
|
info: {
|
|
title: 'sibayam',
|
|
version: '1.0.0',
|
|
description: 'API documentation for the user authentication and management system.',
|
|
},
|
|
servers: [
|
|
{
|
|
url: 'https://backend-sistem-pakar-diagnosa-penya.vercel.app',
|
|
description: 'Production Server'
|
|
},
|
|
],
|
|
components: {
|
|
securitySchemes: {
|
|
BearerAuth: {
|
|
type: 'http',
|
|
scheme: 'bearer',
|
|
bearerFormat: 'JWT',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
apis: ['./routes/*.js'], // Specify the path to your route files
|
|
};
|
|
|
|
const swaggerDocs = swaggerJsDoc(swaggerOptions);
|
|
|
|
// Swagger setup function
|
|
module.exports = (app) => {
|
|
app.use('/api-sibayam', swaggerUi.serve, swaggerUi.setup(swaggerDocs));
|
|
};
|