Current section
Files
Jump to
Current section
Files
grisp_connect
rebar.config
rebar.config
{erl_opts, [debug_info]}.
{deps, [
jsx,
jarl,
grisp_keychain
]}.
{plugins, [rebar3_grisp, rebar3_ex_doc]}.
{grisp, [
{otp, [
{version, "28"}
]},
{deploy, [
{pre_script, "rm -rf /Volumes/GRISP/*"},
{destination, "/Volumes/GRISP"},
{post_script, "diskutil unmount /Volumes/GRISP"}
]}
]}.
{hex, [{doc, #{provider => ex_doc}}]}.
{edoc_opts, [{preprocess, true}]}.
{ex_doc, [
{extras, [
{"CHANGELOG.md", #{title => "Changelog"}},
{"README.md", #{title => "Overview"}},
{"LICENSE", #{title => "License"}}
]},
{main, "README.md"},
{homepage_url, "https://github.com/grisp/grisp_connect"},
{source_url, "https://github.com/grisp/grisp_connect"},
{api_reference, true}
]}.
{profiles, [
{prod, [
{relx, [
{release, {grisp_connect, semver}, [grisp_connect]},
{sys_config, "config/sys.config"}
]}
]},
{dev, [
{relx, [
{release, {grisp_connect, semver}, [grisp_connect]},
{sys_config, "config/dev.config"}
]}
]},
{local, [
{shell, [
{apps, [grisp_connect]},
{config, "./config/local.config"}
]}
]},
{test, [
{deps, [
meck,
{cowboy, "2.12.0"}
]},
{overrides, [
{add, eresu, [{erl_opts, [{d, 'TEST'}]}]}
]},
{ct_opts, [{sys_config, "./config/test.config"}]}
]}
]}.