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

https://github.com/lucsoft/github-proxy

A simple proxy to expose an internal github repo via an API
https://github.com/lucsoft/github-proxy

Last synced: over 1 year ago
JSON representation

A simple proxy to expose an internal github repo via an API

Awesome Lists containing this project

README

          

# Github Proxy

This is a simple proxy server that allows you to expose private repositories to the public internet.

## Usage

1. Create a new repository on Github.
2. Get a personal access token from Github.
3. via deno:

```bash
deno run -A https://raw.githubusercontent.com/$GITHUB_USER/$GITHUB_PROJECT $GITHUB_TOKEN
```

or via docker:

```bash
docker run -p 8001:8001 ghcr.io/lucsoft/github-proxy https://raw.githubusercontent.com/$GITHUB_USER/$GITHUB_PROJECT $GITHUB_TOKEN
```