Skip to content

Commit

Permalink
Make project Rebar3-compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
intjelic committed Dec 17, 2024
1 parent be976c4 commit fd66e49
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 9 additions & 0 deletions ebin/otpless_orchestrator.app
Original file line number Diff line number Diff line change
@@ -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, []}
]}.
4 changes: 4 additions & 0 deletions rebar.config
Original file line number Diff line number Diff line change
@@ -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]}.

0 comments on commit fd66e49

Please sign in to comment.