Add patch_panel example

This commit is contained in:
Eishun Kondoh 2018-02-25 23:44:58 +09:00
parent b16cafbb5c
commit 51729542f3
12 changed files with 227 additions and 0 deletions

View file

@ -0,0 +1,26 @@
defmodule PatchPanel.MixProject do
use Mix.Project
def project do
[
app: :patch_panel,
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],
mod: {PatchPanel.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[{:tres, path: "../../../tres"}]
end
end