This file contains hidden or 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
module.exports.getDocs = function(event, context, callback) { | |
let options = { | |
swaggerDefinition: { | |
info: { // API informations (required) | |
title: 'API Gateway project', // Title (required) | |
version: '1.0.0', // Version (required) | |
description: 'Set of API endpoints exposed via API Gateway', // Description (optional) | |
}, | |
host: 'localhost', // Host (optional) | |
basePath: '/', // Base path (optional), |
This file contains hidden or 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
{ | |
"name": "serverless-aci-slack-plugin", | |
"version": "1.0.0", | |
"description": "A plugin to notify slack channel when deployment is complete", | |
"author": "VB", | |
"license": "MIT", | |
"dependencies": { | |
"superagent": "^3.6.3", | |
"superagent-proxy": "^1.0.2", | |
"superagent-retry": "^0.6.0" |