Raft implementation in erlang
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
260 B

{erl_opts, [no_debug_info]}.
{deps, []}.
{escript_incl_apps,
[raft_erl]}.
{escript_main_app, raft_erl}.
{escript_name, raft_erl}.
{escript_emu_args, "%%! +sbtu +A1\n"}.
%% Profiles
{profiles, [{test,
[{erl_opts, [debug_info]}
]}]}.