Template for Golang serverless applications.
Deploys an AWS Lambda application by utilizing Serverless Framework. Env file (i.e., .env
) is used for configuration.
Since this tries to follow the 3 Musketeers pattern, the following are heavily used:
$ make .env
- see generated
.env
file for configuration
Note: For deployment via CI/CD, CICD_MODE
environment variable should be set to true
in the build server. All env configuration should then be set in the build server's environment variables. They will automatically be used if .env
is generated from .env.cicd
. See Docker's handling of env variables from host environment for more details.
$ make deps
$ make test
$ make build
- this generates
bin
directory to be used in deployment
$ make deploy
$ make fmt
generate test mocks (to be used with stretchr/testify) for all interfaces in project
$ make mocks
- can be configured in
.mockery.yaml