https://github.com/f-lombardo/issues
Exercise from book "Programming Elixir"
https://github.com/f-lombardo/issues
Last synced: 2 months ago
JSON representation
Exercise from book "Programming Elixir"
- Host: GitHub
- URL: https://github.com/f-lombardo/issues
- Owner: f-lombardo
- Created: 2015-11-16T21:27:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-15T22:31:13.000Z (over 9 years ago)
- Last Synced: 2023-03-11T02:52:47.840Z (about 2 years ago)
- Language: Elixir
- Size: 3.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Issues
**Exercise from "Programming Elixir"**
Little project to show issues from github project
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add issues to your list of dependencies in `mix.exs`:
def deps do
[{:issues, "~> 0.0.1"}]
end2. Ensure issues is started before your application:
def application do
[applications: [:issues]]
end## Running
mix escript.build
On Unix
./issues
On Windows
escript .\issues
Another way of running the program
mix issues [count]