Command line tool for fetching a project's most recent Github issues
If available in Hex, the package can be installed
by adding issues
to your list of dependencies in mix.exs
:
def deps do
[
{:issues, "~> 0.1.0"}
]
end
Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/issues.
- package the program with
mix escript.build
- run it using
./issues <github_username> <project> <count(optional)>
Or - run with mix using
mix run -e 'Issues.CLI.run(argv)'
- e.g
mix run -e 'Issues.CLI.run(["-h"])'
ormix run -e 'Issues.CLI.run(["elixir-lang", "elixir"])'
- e.g
- run
mix docs