summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs30
1 files changed, 30 insertions, 0 deletions
diff --git a/mix.exs b/mix.exs
new file mode 100644
index 0000000..0d0c8d0
--- /dev/null
+++ b/mix.exs
@@ -0,0 +1,30 @@
+defmodule RouterExample.MixProject do
+ use Mix.Project
+
+ def project do
+ [
+ app: :router_example,
+ version: "0.1.0",
+ elixir: "~> 1.8",
+ start_permanent: Mix.env() == :prod,
+ deps: deps()
+ ]
+ end
+
+ # Run "mix help compile.app" to learn about applications.
+ def application do
+ [
+ extra_applications: [:logger],
+ mod: {RouterExample.Application, []}
+ ]
+ end
+
+ # Run "mix help deps" to learn about dependencies.
+ defp deps do
+ [
+ {:jason, "~> 1.1"},
+ {:plug_cowboy, "~> 2.0"},
+ {:poison, "~> 5.0"}
+ ]
+ end
+end