January 2019
Intermediate to advanced
520 pages
14h 32m
English
First, you need to install the Serverless Framework using npm, which is supplied with Node.js:
sudo npm install -g serverless
I installed it globally because I want to use it to create a new project from a Rust template of an application with multiple lambdas:
sls install --url https://github.com/softprops/serverless-aws-rust-multi --name rust-sls
This command downloads the template automatically and will use the name provided to construct a blank application. It prints the following to the console:
Serverless: Downloading and installing "serverless-aws-rust-multi"...Serverless: Successfully installed "rust-sls"
When the project is initialized, enter a folder of this project and add the serverless-finch plugin, which we will use ...
Read now
Unlock full access