(Deprecated) I really enjoyed developing and using this, but now would recommend you to use the official gh cli tool.
Set these environment variable
- set GITAUTH_TOKEN as github auth token. visit this for help with auth token generation
- set GH_UNAME as Github user name
(if you have access using root isn't necessary)
$ sudo pip install -r requirements.txt
$ sudo python setup.py install
This project includes a number of helpers in the Makefile to streamline common development tasks.
The following demonstrates setting up and working with a development environment:
### create a virtualenv for development
$ make virtualenv
$ source env/bin/activate
### run github cli application
$ github --help
### run pytest / coverage
$ make test
Included is a basic Dockerfile for building and distributing github,
and can be built with the included make helper:
$ make docker
$ docker run -it github --help