@serverless-devs/s-framework
Version:
Serverless Devs Tool Framework Component For Alibaba Cloud
35 lines • 961 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DEFAULT = void 0;
exports.DEFAULT = {
REGION: 'cn-hangzhou',
SERVICE: {
Name: 's-service',
Description: 'This Service Powered By Serverless Devs Tool'
},
FUNCTION: {
Name: "s-function-" + new Date().getTime(),
Description: 'This Function Powered By Serverless Devs Tool',
Handler: 'index.handler',
MemorySize: 128,
Runtime: 'custom',
Timeout: 10
},
TRIGGERS: [{
Name: 'http',
Type: 'HTTP',
Parameters: {
AuthType: 'ANONYMOUS',
Methods: ['GET', 'POST', 'PUT'],
Domains: []
}
}],
DOMAINS: [{
Domain: 'Auto',
Routes: [{
Path: '/*',
Qualifier: 'LATEST'
}]
}]
};
//# sourceMappingURL=static.js.map