See this page NoServerNovember
First challenge :
Build a Serverless Ipsum generator. Build a simple serverless-backed web app that displays Serverless Ipsum when it is loaded. Or Tony Danza Ipsum. Or The Office Ipsum. Or Reasons-I-Can’t-Take-Out-The-Trash Ipsum. As long as it looks like Lorem Ipsum, but uses different words, we’re good. The page doesn’t have to look fancy, and you can do this even if you’ve never coded anything in your life!
To try out this example you will need to install the Serverless Framework for your platform from here :
Assume you have created a file with your AWS credentials in ~./aws/credentials as the Serverless Framework will require these to be able to run.
Assumes you have dep installed from here dep install
Assume you have created a file with your AWS credentials in ~./aws/credentials as the Serverless Framework will require these to be able to run.
To build the required executable run:
make
To execute the tests run:
make test
To create the infrastructure run:
sls deploy --stage development -v
The serverless config has been setup to allow multiple stages/environments to be created but as yet only one called development exists.
Once you have finished you can destroy the infrastructure with :
sls remove --stage development