Current section
Files
Jump to
Current section
Files
src/exec.app.src
{application, exec,
[
{description, "OS Process Manager"},
{vsn, "1.0.1"},
{id, "exec"},
{modules, []},
{registered, [ exec ] },
%% NOTE: do not list applications which are load-only!
{applications, [ kernel, stdlib ] },
%%
%% mod: Specify the module name to start the application, plus args
%%
{mod, {exec_app, []}},
{env, []},
{maintainers, ["Serge Aleynikov"]},
{licenses, ["BSD"]},
{links, [{"Github", "https://github.com/saleyn/erlexec"}]}
]
}.