rawmind/express-autodoc

View on GitHub
src/swagger/config.js

Summary

Maintainability
A
0 mins
Test Coverage
const security = [
  {
    "ApiKeyAuth": [],
    "OrgHeader": []
  }
]

const defaultConfig = {
  swagger: '2.0',
  host: 'localhost',
  schemes: ["http"],
  security,
}

exports.defaultConfig = defaultConfig