diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2014-11-14 17:44:19 +0000 |
---|---|---|
committer | Fred Hebert <mononcqc@ferd.ca> | 2014-11-14 17:44:19 +0000 |
commit | ad9ca0cc8644b0a89a05ea184483c1d7b8318fcd (patch) | |
tree | 4720475fc96ecdd5fb2eb87147fee7a3131c93fc /priv/templates/app.template | |
parent | 284a5972fab4195f4f99d655bd2fbeecf1648858 (diff) |
Built-in templates create the project directory
Diffstat (limited to 'priv/templates/app.template')
-rw-r--r-- | priv/templates/app.template | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/priv/templates/app.template b/priv/templates/app.template index 78374af..b7bfebc 100644 --- a/priv/templates/app.template +++ b/priv/templates/app.template @@ -3,9 +3,9 @@ {name, "mylib", "Name of the OTP application"}, {desc, "An OTP application", "Short description of the app"} ]}. -{template, "app.erl.dtl", "src/{{name}}_app.erl"}. -{template, "otp_app.app.src.dtl", "src/{{name}}.app.src"}. -{template, "rebar.config.dtl", "rebar.config"}. -{template, "gitignore.dtl", ".gitignore"}. -{template, "LICENSE.dtl", "LICENSE"}. -{template, "README.md.dtl", "README.md"}. +{template, "app.erl.dtl", "{{name}}/src/{{name}}_app.erl"}. +{template, "otp_app.app.src.dtl", "{{name}}/src/{{name}}.app.src"}. +{template, "rebar.config.dtl", "{{name}}/rebar.config"}. +{template, "gitignore.dtl", "{{name}}/.gitignore"}. +{template, "LICENSE.dtl", "{{name}}/LICENSE"}. +{template, "README.md.dtl", "{{name}}/README.md"}. |