gitcat

command module
v0.0.0-...-d5fb29f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 1, 2019 License: Apache-2.0 Imports: 9 Imported by: 0

README

Gitcat

Github-based release tool for multi-repository projects.

gif

Setup

1. Github
  • Register a new application in your Github settings.
  • Make sure your Authorization callback URL is valid
http://<gitcat_instance_domain>:<port>/api/auth
  • Keep your Client ID and Client Secret keys.
2. Gitcat
Docker

The following deployment process is recommend for production.

Run a Gitcat container with the following environment variables:

  • GITHUB_APP_KEY: application key (aka Client ID).
  • GITHUB_APP_SECRET: application secret key (aka Client Secret).
docker run --rm \
           -e GITHUB_APP_KEY=<key> \
           -e GITHUB_APP_SECRET=<secret-key> \
           surycat/gitcat:latest
Local

The following deployment processes are recommend for development.

Docker compose

You can use the docker-compose.yml file, all you need is to create and fill config.env before:

echo $'GITHUB_APP_KEY=<key>\nGITHUB_APP_SECRET=<secret-key>' > config.env
docker-compose build
docker-compose up -d

Your development is available at localhost:8888.

Build locally

If you're not so much a big a fan of Docker, you can also build and run Gitcat locally:

go get -d -v ./...
go build
GITHUB_APP_KEY=xxx GITHUB_APP_SECRET=xxx ./gitcat -port 8888

If you're using the executable on another system, build a statically linked binary.

CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo

Under the hood

Gitcat is a stateless micro-service providing a OAuth signin feature with Github and a simple static web server to host the UI (made of Javascript, HTML and CSS, sprinkled with some AngularJS dark magic).

The user runs and requests Github's API himself through his browser. Settings are stored in the user's private Gists; so basically, the user owns his data.

Semantic versioning

Gitcat handles classic semver (2.0.0) with or without v-prefix:

  • v1.2.3 format is supported.
  • 1.2.3 format is supported.
  • v1.2.3-b4 format is supported.
  • version1 format is not supported.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL