-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathui.ex
64 lines (51 loc) · 1.75 KB
/
ui.ex
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
defmodule FunWithFlags.UI do
@moduledoc """
FunWithFlags.UI, a web dashboard for the [FunWithFlags](https://github.com/tompave/fun_with_flags) package.
See the [Readme](/fun_with_flags_ui/readme.html#how-to-run) for more detailed instructions.
"""
use Application
@doc false
def start(_type, _args) do
check_cowboy()
children = [
{Plug.Cowboy, scheme: :http, plug: FunWithFlags.UI.Router, options: [port: 8080]}
]
opts = [strategy: :one_for_one, name: FunWithFlags.UI.Supervisor]
Supervisor.start_link(children, opts)
end
# Since :cowboy is an optional dependency, if we want to run this
# standalone we want to return a clear error message if Cowboy is
# missing.
#
# On the other hand, if :fun_with_flags_ui is run as a Plug in a
# host application, we don't really care about this dependency
# here, as the responsibility of managing the HTTP layer belongs
# to the host app.
#
defp check_cowboy do
with :ok <- Application.ensure_started(:ranch),
:ok <- Application.ensure_started(:cowlib),
:ok <- Application.ensure_started(:cowboy) do
:ok
else
{:error, _} ->
raise "You need to add :cowboy to your Mix dependencies to run FunWithFlags.UI standalone."
end
end
@doc """
Convenience function to simply run the Plug in Cowboy.
This _will_ be supervided, but in the private supervsion tree
of :cowboy and :ranch.
"""
def run_standalone do
Plug.Cowboy.http FunWithFlags.UI.Router, [], port: 8080
end
@doc """
Convenience function to run the Plug in a custom supervision tree.
This is just an example. If you actually need this, you might want
to use your own supervision setup.
"""
def run_supervised do
start(nil, nil)
end
end