Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iver-wharf/wharf-provider-github
Import Wharf projects from GitHub repositories
https://github.com/iver-wharf/wharf-provider-github
gin gin-gonic golang swaggo wharf wharf-provider
Last synced: about 1 month ago
JSON representation
Import Wharf projects from GitHub repositories
- Host: GitHub
- URL: https://github.com/iver-wharf/wharf-provider-github
- Owner: iver-wharf
- License: mit
- Created: 2021-04-09T09:27:27.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-16T09:54:42.000Z (over 2 years ago)
- Last Synced: 2024-11-14T14:30:35.295Z (about 1 month ago)
- Topics: gin, gin-gonic, golang, swaggo, wharf, wharf-provider
- Language: Go
- Homepage:
- Size: 155 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# GitHub provider for Wharf
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/d2d48df2187247048cdf992e9a5f576d)](https://www.codacy.com/gh/iver-wharf/wharf-provider-github/dashboard?utm_source=github.com\&utm_medium=referral\&utm_content=iver-wharf/wharf-provider-github\&utm_campaign=Badge_Grade)
Import Wharf projects from GitHub repositories. Mainly focused on importing
from github.com, importing from GitHub EE is not well tested.## Components
- HTTP API using the [gin-gonic/gin](https://github.com/gin-gonic/gin)
web framework.- Swagger documentation generated using
[swaggo/swag](https://github.com/swaggo/swag) and hosted using
[swaggo/gin-swagger](https://github.com/swaggo/gin-swagger)- GitHub API client using
[google/go-github](https://github.com/google/go-github)## Configuring
The wharf-provider-github program can be configured via environment variables
and through optional config files. See the docs on the `Config` type over at:## Development
1. Install Go 1.18 or later:
2. Install dependencies using [GNU Make](https://www.gnu.org/software/make/) or
[GNUWin32](http://gnuwin32.sourceforge.net/install.html)```console
$ make deps
```3. Generate the Swagger files (this has to be redone each time the swaggo
documentation comments has been altered):```console
$ make swag
```4. Start hacking with your favorite tool. For example VS Code, GoLand,
Vim, Emacs, or whatnot.## Releasing
Replace the "v2.0.0" in `make docker version=v2.0.0` with the new version. Full
documentation can be found at [Releasing a new version](https://iver-wharf.github.io/#/development/releasing-a-new-version).Below are just how to create the Docker images using [GNU Make](https://www.gnu.org/software/make/)
or [GNUWin32](http://gnuwin32.sourceforge.net/install.html):```console
$ make docker version=v2.0.0
STEP 1: FROM golang:1.18 AS build
STEP 2: WORKDIR /src
--> Using cache de3476fd68836750f453d9d4e7b592549fa924c14e68c9b80069881de8aacc9b
--> de3476fd688
STEP 3: ENV GO111MODULE=on
--> Using cache 4f47a95d0642dcaf5525ee1f19113f97911b1254889c5f2ce29eb6f034bd550b
--> 4f47a95d064
STEP 4: RUN go install github.com/swaggo/swag/cmd/[email protected]
...Push the image by running:
docker push quay.io/iver-wharf/wharf-provider-github:latest
docker push quay.io/iver-wharf/wharf-provider-github:v2.0.0
```## Linting
```sh
make deps # download linting dependenciesmake lint
make lint-go # only lint Go code
make lint-md # only lint Markdown files
```Some errors can be fixed automatically. Keep in mind that this updates the
files in place.```sh
make lint-fixmake lint-fix-go # only lint and fix Go files
make lint-fix-md # only lint and fix Markdown files
```---
Maintained by [Iver](https://www.iver.com/en).
Licensed under the [MIT license](./LICENSE).