Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/tom-sherman/git-gateway-vercel


https://github.com/tom-sherman/git-gateway-vercel

Last synced: 14 days ago
JSON representation

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 handler

import (
"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
```