Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 1.42 KB

README.md

File metadata and controls

42 lines (32 loc) · 1.42 KB

zencli

A small utility for interacting with ZenHub boards through a simple command line interface.

Want to contribute?

  • Awesome. Contributions are welcome!
  • Please fork and submit a pull request with any changes that you think would be useful.
  • If your name is Ben, neither you nor anyone acting as your proxy are allowed to assign any issues to me regarding zencli. :)

Setup

zen expects the following environment variables to be set:

To build and install from source:

  1. Clone the source to your working directory in your go path.
  2. $ cd [...]/zencli/zen
  3. $ go install
  4. $ zen help
NAME
    zen -- a small CLI for interacting with zenhub/github

SYNOPSIS
    zen <command> [parameters]

DESCRIPTION
    zen is a small utility for interacting with ZenHub boards through a simple command line interface.

COMMANDS
    ...
    ...
    ...

yeah, I know

  • I know about the flag package. I wrote the custom parser for this just for the hell of it.
  • I know there are github API wrappers out there already for Go. I wanted to keep things simple and avoid vendored dependencies.