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 8148b12 commit 2fcda2e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
9 changes: 9 additions & 0 deletions ebin/otpless_worker.app
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{application, 'otpless_worker', [
{description, "The gen_server behavior for OTPless Erlang."},
{vsn, "0.1.0"},
{modules, ['worker','worker_proxy']},
{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 2fcda2e

Please sign in to comment.