https://github.com/colelawrence/elixir_in_action_todo_cache
Code following the book Elixir in Action, and other Elixir scribbles.
https://github.com/colelawrence/elixir_in_action_todo_cache
elixir elixir-lang
Last synced: 11 months ago
JSON representation
Code following the book Elixir in Action, and other Elixir scribbles.
- Host: GitHub
- URL: https://github.com/colelawrence/elixir_in_action_todo_cache
- Owner: colelawrence
- Created: 2017-02-07T18:25:13.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-03T16:14:52.000Z (over 8 years ago)
- Last Synced: 2025-04-05T20:41:54.120Z (about 1 year ago)
- Topics: elixir, elixir-lang
- Language: Elixir
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todo
This code is based on [the book _Elixir in Action_ by Saša Jurić](https://www.manning.com/books/elixir-in-action).
Unlike _Programming Phoenix_, this book goes over concepts of distributed systems in more detail and discusses
persistence to a finer degree.
I read this book first, before proceeding to _Programming Phoenix_ which lead to the development of
[Watch Together](https://github.com/colelawrence/phoenix_watch_together).
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `todo` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:todo, "~> 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/todo](https://hexdocs.pm/todo).