Installs a service from a GitHub URL in the current working directory.
serverless install --url https://github.com/some/service--urlor-uThe services Git URL. Required.--nameor-nName for the service.
serverless install --url https://github.com/tencentcloud/serverless/tencent-nodejsThis example will download the .zip file of the tencent-nodejs service from GitHub, create a new directory with the name tencent-nodejs in the current working directory and unzips the files in this directory.
serverless install --url https://github.com/tencentcloud/serverless/tencent-nodejs --name my-serviceThis example will download the .zip file of the tencent-nodejs service from GitHub, create a new directory with the name my-service in the current working directory and unzips the files in this directory and renames the service to my-service if serverless.yml exists in the service root.
serverless install --url https://github.com/tencentyun/scf-demo-repo/tree/master/Nodejs8.9-HexoDemoThis example will download the Nodejs8.9-HexoDemo service from GitHub.