No description
Find a file
dependabot[bot] d0bd4874d4
Bump golang.org/x/crypto from 0.0.0-20171019172325-541b9d50ad47 to 0.1.0
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.0.0-20171019172325-541b9d50ad47 to 0.1.0.
- [Release notes](https://github.com/golang/crypto/releases)
- [Commits](https://github.com/golang/crypto/commits/v0.1.0)

---
updated-dependencies:
- dependency-name: golang.org/x/crypto
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-02-24 17:20:40 +00:00
cmd It goes into the repo or it gets the hose again. 2019-02-26 09:10:07 -05:00
.gitignore enable godep 2017-09-25 15:36:56 -04:00
go.mod Bump golang.org/x/crypto from 0.0.0-20171019172325-541b9d50ad47 to 0.1.0 2023-02-24 17:20:40 +00:00
go.sum Bump golang.org/x/crypto from 0.0.0-20171019172325-541b9d50ad47 to 0.1.0 2023-02-24 17:20:40 +00:00
issue.go It goes into the repo or it gets the hose again. 2019-02-26 09:10:07 -05:00
jiraclient.go Implement attach command 2018-06-20 13:53:05 -04:00
jkl.go It goes into the repo or it gets the hose again. 2019-02-26 09:10:07 -05:00
jkl_test.go Canonical path is actually otremblay.com/jkl 2017-10-20 20:40:29 -04:00
LICENSE add license 2017-09-25 15:39:04 -04:00
Makefile Makefiles with code coverage generation, terminal detection for color strippage 2016-05-25 18:59:50 -04:00
README.md Merge pull request #20 from gabeguz/config-docs 2020-01-20 10:53:37 -05:00

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

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D