static.app.src 280 B

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