Fix and add more Db.Site validations
[site_monitor.git] / mix.exs
blobaae65df68124424cefc7bd7a426855c5fb246f6b
1 defmodule SiteMonitor.Mixfile do
2   use Mix.Project
4   def project do
5     [app: :site_monitor,
6      version: "0.0.1",
7      elixir: "~> 1.0",
8      deps: deps]
9   end
11   # Configuration for the OTP application
12   #
13   # Type `mix help compile.app` for more information
14   def application do
15     [applications: [:logger],
16       env: [redis: []],
17       mod: {SiteMonitor, []}]
18   end
20   # Dependencies can be Hex packages:
21   #
22   #   {:mydep, "~> 0.3.0"}
23   #
24   # Or git/path repositories:
25   #
26   #   {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
27   #
28   # Type `mix help deps` for more examples and options
29   defp deps do
30     [{:exredis, github: "artemeff/exredis", tag: "0.1.0"}]
31   end
32 end