https://github.com/brunojppb/elixir-github-issues
Fetch the most recent issues from Github
https://github.com/brunojppb/elixir-github-issues
elixir otp
Last synced: 11 months ago
JSON representation
Fetch the most recent issues from Github
- Host: GitHub
- URL: https://github.com/brunojppb/elixir-github-issues
- Owner: brunojppb
- Created: 2020-04-05T07:37:23.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-17T20:31:07.000Z (about 6 years ago)
- Last Synced: 2025-05-26T23:02:06.638Z (about 1 year ago)
- Topics: elixir, otp
- Language: Elixir
- Size: 1.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Issues
Fetch the most recent issues from a github project.

## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `issues` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:issues, "~> 0.1.0"}
]
end
```
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/issues](https://hexdocs.pm/issues).
## To start iex with our app code
```shell
iex -S mix
```
## To compile the mix project
```shell
mix escript.build
```
## To execute the binary
```shell
# github user | project | number of issues to fetch
./issues elixir-lang elixir 10
```
## Generate Docs
```shell
mix docs
```
Go to `docs/index.html` to read it.