├── .gitattributes ├── .github └── workflows │ └── docker-push.yaml ├── .gitignore ├── Dockerfile ├── README.md ├── config.json ├── config.json.dist ├── docker-entrypoint.sh ├── go.mod ├── go.sum ├── main.go └── public ├── favicon.ico ├── index.html └── logo.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeyy01/gh-proxy-go/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/docker-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeyy01/gh-proxy-go/HEAD/.github/workflows/docker-push.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /.idea 3 | buiid.bat 4 | main_linux 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeyy01/gh-proxy-go/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeyy01/gh-proxy-go/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeyy01/gh-proxy-go/HEAD/config.json -------------------------------------------------------------------------------- /config.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeyy01/gh-proxy-go/HEAD/config.json.dist -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeyy01/gh-proxy-go/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeyy01/gh-proxy-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeyy01/gh-proxy-go/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeyy01/gh-proxy-go/HEAD/main.go -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeyy01/gh-proxy-go/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeyy01/gh-proxy-go/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moeyy01/gh-proxy-go/HEAD/public/logo.png --------------------------------------------------------------------------------