You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
560 B

  1. {description, "Complete OTP Application structure."}.
  2. {variables, [
  3. {name, "mylib", "Name of the OTP application"},
  4. {desc, "An OTP application", "Short description of the app"}
  5. ]}.
  6. {template, "app.erl", "{{name}}/src/{{name}}_app.erl"}.
  7. {template, "sup.erl", "{{name}}/src/{{name}}_sup.erl"}.
  8. {template, "otp_app.app.src", "{{name}}/src/{{name}}.app.src"}.
  9. {template, "app_rebar.config", "{{name}}/rebar.config"}.
  10. {template, "gitignore", "{{name}}/.gitignore"}.
  11. {template, "LICENSE", "{{name}}/LICENSE"}.
  12. {template, "README.md", "{{name}}/README.md"}.