ssl_hello_world.app.src 326 B

12345678910111213141516
  1. %% Feel free to use, reuse and abuse the code in this file.
  2. {application, ssl_hello_world, [
  3. {description, "Cowboy Hello World example with SSL."},
  4. {vsn, "1"},
  5. {modules, []},
  6. {registered, [ssl_hello_world_sup]},
  7. {applications, [
  8. kernel,
  9. stdlib,
  10. cowboy,
  11. ssl
  12. ]},
  13. {mod, {ssl_hello_world_app, []}},
  14. {env, []}
  15. ]}.