https://github.com/moh3a/serverless_go
https://github.com/moh3a/serverless_go
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/moh3a/serverless_go
- Owner: moh3a
- Created: 2023-05-20T22:24:49.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-20T22:55:01.000Z (about 2 years ago)
- Last Synced: 2025-02-08T15:27:57.696Z (5 months ago)
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Serverless stack in Go
using these technologies:
- API Gateway in Golang
- AWS Lambda
- DynamoDB## Quickstart
- after cloning repo, run the following command
```sh
go mod tidy
```- set the environment variables
- then build main.go```sh
go build -o build/main cmd/main.go
```- zip the build to the build dir
```sh
zip -jrm build/main.zip build/main
```