No description
Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.0.0-20171017063910-8dbc5d05d6ed to 0.1.0. - [Release notes](https://github.com/golang/sys/releases) - [Commits](https://github.com/golang/sys/commits/v0.1.0) --- updated-dependencies: - dependency-name: golang.org/x/sys dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|---|---|---|
| cmd | ||
| .gitignore | ||
| go.mod | ||
| go.sum | ||
| issue.go | ||
| jiraclient.go | ||
| jkl.go | ||
| jkl_test.go | ||
| LICENSE | ||
| Makefile | ||
| README.md | ||
jkl
jkl is a library for programmatically interacting with a JIRA installation. It
comes with a command line program (also called jkl) which allows you to
interact with JIRA via the command line.
Installation
To use the library, simply import it into your application:
import "github.com/otremblay/jkl"
To install the command line application: First, make sure you have a working go environment: https://golang.org/doc/install
Then, execute the following command from your shell:
$ go get github.com/otremblay/jkl/cmd/jkl
Usage
Make sure you create a ~/.jklrc file in your home directory, it should contain
at a minimum:
JIRA_ROOT="https://jira.example.com/"
JIRA_USER="myusername"
JIRA_PASSWORD="mypassword"
JIRA_PROJECT="DPK"
Those values are for example only, your setup will be different.
TODO: Finish writing usage instructions
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -am 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request :D