-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmix.exs
42 lines (38 loc) · 870 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
defmodule Clint.Mixfile do
use Mix.Project
def project do
[
app: :clint,
version: "0.0.1",
elixir: "~> 1.0",
deps: deps,
name: "Clint",
source_url: "https://github.com/lpil/clint",
description: "An Elixir web micro-framework, inspired by Sinatra",
package: [
contributors: ["Louis Pilfold"],
licenses: ["MIT"],
links: %{ "GitHub" => "https://github.com/lpil/clint" },
files: ~w(mix.exs lib README.md LICENCE)
]
]
end
def application do
[
applications: [
:cowboy,
:plug,
:logger,
],
]
end
defp deps do
[
{:cowboy, "~>1.0.0"},
{:plug, "~>0.11.0"},
{:mix_test_watch, "~> 0.1.1"},
{:shouldi, "~> 0.2.2", only: :test},
]
end
Application.put_env Clint, :templates_dir, "templates/"
end