Last active
May 19, 2022 16:16
-
-
Save jeferandom/c8daf96bbab6e28a4c036973ef4712ba to your computer and use it in GitHub Desktop.
Config Swagger Express with yaml files.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const swaggerJsdoc = require("swagger-jsdoc"); | |
const swaggerUI = require('swagger-ui-express'); | |
const options = { | |
definition: { | |
openapi: "3.0.0", | |
info: { | |
"title": "Server Importacion", | |
"version": "1.0.0" | |
}, | |
servers: [{ | |
"url": `http://localhost:${PORT}/api/v1`, | |
"description": "Servidor de Importación de Documentos Electrónicos" | |
}], | |
basePath: '/v1/', | |
}, | |
apis: ['./documentation/*.yaml','./documentation/*.yml'] | |
} | |
const openapiSpecification = swaggerJsdoc(options); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment