Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tom-sherman/git-gateway-vercel
https://github.com/tom-sherman/git-gateway-vercel
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tom-sherman/git-gateway-vercel
- Owner: tom-sherman
- Created: 2023-10-06T10:59:59.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-13T11:32:00.000Z (about 1 year ago)
- Last Synced: 2023-10-14T16:28:40.072Z (about 1 year ago)
- Language: Go
- Homepage: https://netlify-cms-git-gateway-vercel.vercel.app
- Size: 149 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Netlify CMS Git Gateway
Deploys https://github.com/netlify/git-gateway to Vercel.
## Usage
You can use this package in your own Vercel projects by including it in a Go Serverless function like so:
```go
package handlerimport (
"net/http"handler "github.com/tom-sherman/git-gateway-vercel"
)func Handler(w http.ResponseWriter, r *http.Request) {
handler.Handler(w, r)
}
```## Development
```
vercel env pull
vercel dev
```