Initial .gitignore and rebar.config

This commit is contained in:
Vadim Yanitskiy 2019-08-15 22:05:33 +02:00
commit 9339491242
2 changed files with 27 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
_build
*.beam

25
rebar.config Normal file
View File

@ -0,0 +1,25 @@
{erl_opts, [debug_info, {parse_transform, lager_transform}]}.
{deps, [
{setup, "2.0.2"},
{lager, "3.6.8"},
{osmo_ss7, {git, "git://git.osmocom.org/erlang/osmo_ss7", {branch, "laforge/wip"}}},
{osmo_gsup, {git, "git://git.osmocom.org/erlang/osmo_gsup", {branch, "master"}}}
]}.
{minimum_otp_vsn, "20.3"}.
{xref_checks, [undefined_function_calls, undefined_functions,
deprecated_function_calls, deprecated_functions]}.
{provider_hooks,
[{pre,
[{compile, {diameter, compile}},
{clean, {diameter, clean}}
]}
]}.
{dialyzer, [
{plt_extra_apps, [kernel, stdlib, erts, tools, inets, compiler]},
{warnings, [no_improper_lists]}
]}.