-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmix.exs
More file actions
32 lines (28 loc) · 742 Bytes
/
mix.exs
File metadata and controls
32 lines (28 loc) · 742 Bytes
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
defmodule GreenbarExec.Mixfile do
use Mix.Project
def project do
[app: :greenbar_exec,
version: "0.18.0",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
elixirc_options: [warnings_as_errors: System.get_env("ALLOW_WARNINGS") == nil],
escript: escript(),
deps: deps()]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[applications: [:logger,
:greenbar_markdown,
:greenbar]]
end
defp deps do
[{:greenbar, github: "operable/greenbar"}]
end
defp escript() do
[main_module: GreenbarExec,
path: "bin/gbexec"]
end
end