Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dhyegocalota/writing-backwards-elixir-dojo-challenge
https://github.com/dhyegocalota/writing-backwards-elixir-dojo-challenge
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dhyegocalota/writing-backwards-elixir-dojo-challenge
- Owner: dhyegocalota
- Created: 2016-08-23T19:35:44.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-23T19:42:10.000Z (about 8 years ago)
- Last Synced: 2024-03-19T02:56:06.347Z (8 months ago)
- Language: Elixir
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PhoneDialer [![Build Status](https://travis-ci.org/dhyegofernando/dojo-s02e01-escrevendo-celular-contrario-elixir.svg?branch=master)](https://travis-ci.org/dhyegofernando/dojo-s02e01-escrevendo-celular-contrario-elixir)
Library written in Elixir as a fork from the [original source code for Coding Dojo S02E01](https://github.com/devmatogrosso/dojo-s02e01-escrevendo-celular-contrario)
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add `phone_dialer` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:phone_dialer, "~> 0.1.0"}]
end
```2. Ensure `phone_dialer` is started before your application:
```elixir
def application do
[applications: [:phone_dialer]]
end
```