Packages

BEAM VM uptime and statistics service with embeddable LiveComponent

Current section

Files

Jump to
demo_uptime rebar.config
Raw

rebar.config

{erl_opts, [debug_info]}.
{deps, [
{cowboy, "2.12.0"},
{jiffy, "1.1.2"}
]}.
{shell, [
{apps, [demo_uptime]}
]}.
{relx, [
{release, {demo_uptime, "0.1.0"}, [demo_uptime]},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true}
]}.
{profiles, [
{prod, [
{relx, [
{dev_mode, false},
{include_erts, true}
]}
]}
]}.
%% Hex.pm publishing configuration
{project_plugins, [rebar3_hex, rebar3_ex_doc]}.
{hex, [
{doc, #{provider => ex_doc}}
]}.
{ex_doc, [
{source_url, <<"https://github.com/beam-campus/bc-gitops-demo-uptime">>},
{extras, [<<"README.md">>, <<"CHANGELOG.md">>, <<"LICENSE">>]},
{main, <<"README.md">>}
]}.