summaryrefslogtreecommitdiff
path: root/apps/chttpd/ebin/chttpd.app
blob: a32f4786478b484ae146b036327c787b49da8db2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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,[]}}
]}.