mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
70 lines
1.6 KiB
JavaScript
70 lines
1.6 KiB
JavaScript
'use strict';
|
|
|
|
class Deploy {
|
|
constructor(serverless) {
|
|
this.serverless = serverless;
|
|
|
|
this.commands = {
|
|
deploy: {
|
|
usage: 'Deploy a Serverless service',
|
|
lifecycleEvents: [
|
|
'initialize',
|
|
'deploy',
|
|
'finalize',
|
|
],
|
|
options: {
|
|
stage: {
|
|
usage: 'Stage of the service',
|
|
shortcut: 's',
|
|
},
|
|
region: {
|
|
usage: 'Region of the service',
|
|
shortcut: 'r',
|
|
},
|
|
package: {
|
|
usage: 'Path of the deployment package',
|
|
shortcut: 'p',
|
|
},
|
|
verbose: {
|
|
usage: 'Show all stack events during deployment',
|
|
shortcut: 'v',
|
|
},
|
|
},
|
|
commands: {
|
|
function: {
|
|
usage: 'Deploy a single function from the service',
|
|
lifecycleEvents: [
|
|
'initialize',
|
|
'packageFunction',
|
|
'deploy',
|
|
],
|
|
options: {
|
|
function: {
|
|
usage: 'Name of the function',
|
|
shortcut: 'f',
|
|
required: true,
|
|
},
|
|
stage: {
|
|
usage: 'Stage of the function',
|
|
shortcut: 's',
|
|
},
|
|
region: {
|
|
usage: 'Region of the function',
|
|
shortcut: 'r',
|
|
},
|
|
},
|
|
},
|
|
list: {
|
|
usage: 'List deployed version of your Serverless Service',
|
|
lifecycleEvents: [
|
|
'log',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = Deploy;
|