Current section
Files
Jump to
Current section
Files
lib/application.ex
defmodule ExCompileGraph.Application do
use Application
def start(_type, _args) do
children = [
{Plug.Cowboy, scheme: :http, plug: ExCompileGraphWeb.Server, port: 4040}
]
ExCompileGraph.init()
Supervisor.start_link(children, strategy: :one_for_one)
end
end