This commit is contained in:
Gavin McDonald
2018-11-11 11:27:25 -05:00
commit 5e537d6895
9 changed files with 191 additions and 0 deletions

25
mix.exs Normal file
View File

@@ -0,0 +1,25 @@
defmodule Cartographer.MixProject do
use Mix.Project
def project do
[
app: :cartographer,
version: "0.1.0",
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[]
end
end