Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 518 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 518 Bytes

Cold

A demo of Sneeze.

Run

iex -S mix

Then visit localhost:4000 in a browser.

Installation

If available in Hex, the package can be installed as:

  1. Add cold to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:cold, "~> 0.1.0"}]
end
```
  1. Ensure cold is started before your application:
```elixir
def application do
  [applications: [:cold]]
end
```