mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
Updating simpleapp template to use .app.src
This commit is contained in:
parent
c32d26f509
commit
823dc3065f
2 changed files with 1 additions and 17 deletions
|
@ -1,16 +0,0 @@
|
|||
{application, {{appid}},
|
||||
[
|
||||
{description, ""},
|
||||
{vsn, "1"},
|
||||
{modules, [
|
||||
{{appid}}_app,
|
||||
{{appid}}_sup
|
||||
]},
|
||||
{registered, []},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib
|
||||
]},
|
||||
{mod, { {{appid}}_app, []}},
|
||||
{env, []}
|
||||
]}.
|
|
@ -1,4 +1,4 @@
|
|||
{variables, [{appid, "myapp"}]}.
|
||||
{template, "simpleapp.app", "ebin/{{appid}}.app"}.
|
||||
{template, "simpleapp.app.src", "src/{{appid}}.app.src"}.
|
||||
{template, "simpleapp_app.erl", "src/{{appid}}_app.erl"}.
|
||||
{template, "simpleapp_sup.erl", "src/{{appid}}_sup.erl"}.
|
Loading…
Reference in a new issue