Current section
Files
Jump to
Current section
Files
rebar.config
{project_plugins, [rebar3_ex_doc]}.
{plugins, [rebar3_hex]}.
{erl_opts, [
debug_info,
warnings_as_errors,
warn_export_all,
warn_unused_import,
warn_untyped_record
]}.
{deps, [
{ranch, "2.1.0"},
{jsx, "3.1.0"}
]}.
{shell, [
{config, "config/sys.config"},
{apps, [alara]}
]}.
{relx, [
{release, {alara, "1.0.0"}, [alara, sasl]},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true},
{sys_config, "./config/sys.config"}
]}.
{profiles, [
{prod, [
{erl_opts, [no_debug_info, warnings_as_errors]},
{relx, [
{dev_mode, false},
{include_erts, true},
{system_libs, true}
]}
]},
{test, [
{deps, [
{proper, "1.5.0"}
]},
{erl_opts, [debug_info]}
]}
]}.
{ct_opts, [
{sys_config, "config/sys.config"}
]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{dialyzer, [
{warnings, [
unmatched_returns,
error_handling,
race_conditions,
underspecs
]}
]}.
{hex, [
{doc, ex_doc}
]}.
{ex_doc, [
{extras, [
{"README.md", #{title => "Overview"}},
{"LICENSE", #{title => "License"}}
]},
{main, "README.md"},
{source_url, "https://github.com/roquess/alara"},
{api_reference, true}
]}.
{edoc_opts, [
{doclet, edoc_doclet_chunks},
{layout, edoc_layout_chunks},
{preprocess, true},
{packages, false},
{subpackages, false},
{source_path, ["src"]},
{application, alara}
]}.