An open API service indexing awesome lists of open source software.

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

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
```