尚未整理
Google Stack Driver logging
Docker
HTML Canvas
Swagger

Ideas
Stored Bitbucket password not updated

Last updated


Last updated
var config = {
appRoot: __dirname, // required config
swaggerSecurityHandlers: {
Bearer: function (req, authOrSecDef, scopesOrApiKey, callback) {
console.warn('apiKey', scopesOrApiKey);
if (scopesOrApiKey === TOKEN) {
callback();
} else {
callback(new Error('API Key not matched'))
}
},
},
};