Skip to content

Instantly share code, notes, and snippets.

@jeferandom
Last active May 19, 2022 16:16
Show Gist options
  • Save jeferandom/c8daf96bbab6e28a4c036973ef4712ba to your computer and use it in GitHub Desktop.
Save jeferandom/c8daf96bbab6e28a4c036973ef4712ba to your computer and use it in GitHub Desktop.
Config Swagger Express with yaml files.
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