1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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, []}
]}.
|