diff --git a/Makefile b/Makefile index 1fdb7a7..41047bf 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PROJECT = otpless_orchestrator -PROJECT_DESCRIPTION = New project +PROJECT_DESCRIPTION = The supervisor behavior for OTPless Erlang. PROJECT_VERSION = 0.1.0 DEPS = spawn_mode diff --git a/ebin/otpless_orchestrator.app b/ebin/otpless_orchestrator.app new file mode 100644 index 0000000..a546a54 --- /dev/null +++ b/ebin/otpless_orchestrator.app @@ -0,0 +1,9 @@ +{application, 'otpless_orchestrator', [ + {description, "The supervisor behavior for OTPless Erlang."}, + {vsn, "0.1.0"}, + {modules, ['orchestrator']}, + {registered, []}, + {applications, [kernel,stdlib,spawn_mode]}, + {optional_applications, []}, + {env, []} +]}. \ No newline at end of file diff --git a/rebar.config b/rebar.config new file mode 100644 index 0000000..bbbe478 --- /dev/null +++ b/rebar.config @@ -0,0 +1,4 @@ +{deps, [ +{spawn_mode,".*",{git,"https://github.com/erlangsters/spawn-mode",{branch,"master"}}} +]}. +{erl_opts, [debug_info,warn_export_vars,warn_shadow_vars,warn_obsolete_guard]}.