web_server.app.src 304 B

123456789101112131415
  1. %% Feel free to use, reuse and abuse the code in this file.
  2. {application, web_server, [
  3. {description, "Cowboy static file handler with directory indexes."},
  4. {vsn, "1"},
  5. {modules, []},
  6. {registered, []},
  7. {applications, [
  8. kernel,
  9. stdlib,
  10. cowboy
  11. ]},
  12. {mod, {web_server_app, []}},
  13. {env, []}
  14. ]}.