https://github.com/imamachi-n/aws-serverless-golang-101
https://github.com/imamachi-n/aws-serverless-golang-101
lambda-functions severless-framework
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/imamachi-n/aws-serverless-golang-101
- Owner: Imamachi-n
- License: mit
- Created: 2019-11-26T12:21:40.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-26T14:20:17.000Z (over 5 years ago)
- Last Synced: 2023-05-22T07:32:05.876Z (about 2 years ago)
- Topics: lambda-functions, severless-framework
- Language: Go
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aws-serverless-golang-101
## Requirements
Install Node.js and AWS CLI in your PC.
After that, execute `aws configure` and setup your access key to AWS in interactive command.Install Serverless framework CLI in your PC
```bash
yarn global add serverless
sls -v
```## How to deploy your Lambda functions to AWS
To deploy lambda functions to AWS
```bash
make deploy
```To remove lambda functions from AWS
```bash
make remove
```## Reference
[aws-golang-http-get-post](https://github.com/serverless/examples/tree/master/aws-golang-http-get-post)