diff options
author | Adam Kocoloski <adam@cloudant.com> | 2010-06-09 11:41:57 -0400 |
---|---|---|
committer | Adam Kocoloski <adam@cloudant.com> | 2010-06-09 11:41:57 -0400 |
commit | 8b187422a888a94b8f1d48eee52f100510a83141 (patch) | |
tree | 01556f7f26a4732a3c8bcc63a0127a195f00b61f /ebin |
new app for dedicated cluster HTTP interface
Diffstat (limited to 'ebin')
-rw-r--r-- | ebin/chttpd.app | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ebin/chttpd.app b/ebin/chttpd.app new file mode 100644 index 00000000..445b0969 --- /dev/null +++ b/ebin/chttpd.app @@ -0,0 +1,23 @@ +{application, chttpd, [ + {description, "HTTP interface for CouchDB cluster"}, + {vsn, "1.0"}, + {modules, [ + chttpd, + chttpd_app, + chttpd_auth, + chttpd_db, + chttpd_external, + chttpd_misc, + chttpd_oauth, + chttpd_server, + chttpd_show, + chttpd_stats, + chttpd_sup, + chttpd_view, + cloudant_auth + ]}, + {registered, []}, + {applications, [kernel, stdlib, couch, fabric]}, + {mod, {chttpd_app,[]}}, + {start_phases, []} +]}.
\ No newline at end of file |