CLI client to fetch JIRA worklog - written in Elixir.
JRC stands for : JIRA Report Client
If available in Hex, the package can be installed
by adding jrc
to your list of dependencies in mix.exs
:
First, clone the project:
git clone [email protected]:johebting/jrc.git
Make sure you have a recent version of elixir
and get project dependencies:
mix deps.get
Then, generate the executable file:
mix escript.build
This should create a jrc
file in your project folder.
You can fetch result by passing server path and credentials by arguments :
$ jrc --path "jira.host.com" --username "username" --password "password"
Or by editing the config/config.exs
file :
config :jrc,
jira_path: "jira.host.com",
username: "username",
password: "password",
default_project: :all_project,
default_days_count: 7