https://github.com/tegon/elixir-in-action
Elixir in Action's book exercises
https://github.com/tegon/elixir-in-action
Last synced: 8 months ago
JSON representation
Elixir in Action's book exercises
- Host: GitHub
- URL: https://github.com/tegon/elixir-in-action
- Owner: tegon
- License: mit
- Created: 2017-09-07T14:23:05.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-01-10T02:32:59.000Z (over 8 years ago)
- Last Synced: 2025-10-09T17:37:58.106Z (8 months ago)
- Language: Elixir
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# elixir-in-action
Elixir in Action's book exercises
=======
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add `elixir_in_action` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:elixir_in_action, "~> 0.1.0"}]
end
```
2. Ensure `elixir_in_action` is started before your application:
```elixir
def application do
[applications: [:elixir_in_action]]
end
```