January 2019
Intermediate to advanced
490 pages
15h 37m
English
Let us create a simple Lambda using the Serverless framework:
npm install -g serverless
serverless config credentials --provider aws --key <access key> --secret <secret access key> --profile serverless-admin
You should get a success message stating that keys were stored under the serverless-admin profile.
sls create --template aws-java-maven --path hello-world-java-maven
It creates a hello-world-java-maven folder, with pom.xml and serverless.yml files, and the src folder. You may open this Maven project in your IDE of choice. ...
Read now
Unlock full access