https://github.com/daftmaple/go-serverless-test
Example Go function app (serverless) with Vercel because why not
https://github.com/daftmaple/go-serverless-test
go serverless vercel vercel-serverless vercel-serverless-functions
Last synced: 9 months ago
JSON representation
Example Go function app (serverless) with Vercel because why not
- Host: GitHub
- URL: https://github.com/daftmaple/go-serverless-test
- Owner: daftmaple
- Created: 2020-12-17T13:22:40.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-19T06:40:53.000Z (over 5 years ago)
- Last Synced: 2025-03-21T23:43:14.013Z (about 1 year ago)
- Topics: go, serverless, vercel, vercel-serverless, vercel-serverless-functions
- Language: Go
- Homepage: https://serverless-test.daftmaple.vercel.app
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vercel Serverless Functions in Go
## Serve locally
Make the `test.go` file which contains `main()` that runs an http server in port 8080 by default or any port set with environment variable `APP_PORT`.
```sh
make
# Run the app in port 8090
APP_PORT=8090 ./a.out
```