This is an example Go CRUD application deployed to AWS using the serverless framework based on Yos Riady's example in his book A Practical Guide to Serverless Go.
$ make deploy
I made a few changes/deviations from Yos Riady's example app:
- Migrated from
dep
tomod
using these instructions. - Replaced
./scripts/build.sh
and./scripts/deploy.sh
with aMakefile
. - Moved handlers into separate directories so that multiple, different
main
package files weren't in the same directory. - Instead of using individual package includes in
serverless.yml
, include./bin/**
.
serverless-go-crud
is released under the MIT license. Please see the
LICENSE file for more information.