serverless deploy [function]
Deploys your service.
--function
or-f
The name of the function which should be deployed (Note: only available when runningserverless deploy function
)--stage
or-s
The stage in your service that you want to deploy to.--region
or-r
The region in that stage that you want to deploy to.--noDeploy
Skips the deployment steps and leaves artifacts in the.serverless
directory
deploy:cleanup
deploy:initialize
deploy:setupProviderConfiguration
deploy:createDeploymentArtifacts
deploy:compileFunctions
deploy:compileEvents
deploy:deploy
deploy:function:deploy
serverless deploy
This is the simplest deployment usage possible. With this command Serverless will deploy your service to the defined
provider in the default stage (dev
) to the default region (us-east-1
).
serverless deploy --stage production --region eu-central-1
With this example we've defined that we want our service to be deployed to the production
stage in the region
eu-central-1
.
This command deploy the function func
in the default stage (dev
) of the default region (us-east-1
).
serverless deploy function --function func
The function func
will be deployed in the production
stage of the eu-central-1
region.
serverless deploy function --function func --stage production --region eu-central-1