kbcmd is a command line client for killbill. kbcmd uses go client library to talk to killbill.
For users new to go, you need to have go compiler installed. If not,
- Install go from here
- Follow the instructions here to setup your environment.
- Tests your installation and verify everything works.
go get -u github.com/killbill/kbcli/kbcmd
go install github.com/killbill/kbcli/kbcmd
# For bash completion
source $GOPATH/src/github.com/killbill/kbcli/kbcmd/bash-autocompletekbcmd -h
# (or)
kbcmd <command> -hThe following walkthrough will walk you through the steps to create new account and subscription and then generate invoice for it.
For development, clone the repository to your git workspace under
$GOPATH/src/github.com/killbill/kbcli and then run go get -t ./...
to install the dependencies. Visual Studio Code is recommmended IDE, but
others work as well. Make sure to run the tests before submitting PR.