diff options
Diffstat (limited to 'apps/chttpd/ebin')
-rw-r--r-- | apps/chttpd/ebin/chttpd.app | 20 | ||||
-rw-r--r-- | apps/chttpd/ebin/chttpd.appup | 4 |
2 files changed, 24 insertions, 0 deletions
diff --git a/apps/chttpd/ebin/chttpd.app b/apps/chttpd/ebin/chttpd.app new file mode 100644 index 00000000..a32f4786 --- /dev/null +++ b/apps/chttpd/ebin/chttpd.app @@ -0,0 +1,20 @@ +{application, chttpd, [ + {description, "HTTP interface for CouchDB cluster"}, + {vsn, "1.0.3"}, + {modules, [ + chttpd, + chttpd_app, + chttpd_auth, + chttpd_db, + chttpd_external, + chttpd_misc, + chttpd_oauth, + chttpd_rewrite, + chttpd_show, + chttpd_sup, + chttpd_view + ]}, + {registered, [chttpd_sup, chttpd]}, + {applications, [kernel, stdlib, couch, fabric]}, + {mod, {chttpd_app,[]}} +]}.
\ No newline at end of file diff --git a/apps/chttpd/ebin/chttpd.appup b/apps/chttpd/ebin/chttpd.appup new file mode 100644 index 00000000..e0b5cdfe --- /dev/null +++ b/apps/chttpd/ebin/chttpd.appup @@ -0,0 +1,4 @@ +{"1.0.3",[{"1.0.2",[ + {load_module, chttpd_external}, + {load_module, chttpd} +]}],[{"1.0.2",[]}]}. |