diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f8c15dc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +ebin/ \ No newline at end of file diff --git a/rebar.config b/rebar.config new file mode 100644 index 0000000..0f5d40e --- /dev/null +++ b/rebar.config @@ -0,0 +1 @@ +{erl_opts, [debug_info]}. diff --git a/src/erlang_localtime.app.src b/src/erlang_localtime.app.src index 5167487..11f842c 100644 --- a/src/erlang_localtime.app.src +++ b/src/erlang_localtime.app.src @@ -4,5 +4,6 @@ {applications, [kernel, stdlib]}, {vsn, "1.0"}, {registered, []}, - {env, []} + {env, []}, + {applications, []} ]}.