diff options
author | Adam Kocoloski <adam@cloudant.com> | 2010-08-11 15:28:00 -0400 |
---|---|---|
committer | Adam Kocoloski <adam@cloudant.com> | 2010-08-11 17:39:37 -0400 |
commit | 1c9d5c118ace092e228f60359e2863da1d3b1bc7 (patch) | |
tree | 3f0f5532959216127fcfb99f7fb9af26a80fc56a /apps | |
parent | 81bdbed444df2cbcf3cdb32f7d4a74019de06454 (diff) |
fix couch.app template for rebar
Diffstat (limited to 'apps')
-rw-r--r-- | apps/couch/src/couch.app.src | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/apps/couch/src/couch.app.src b/apps/couch/src/couch.app.src index 36b0b34c..2e25d55a 100644 --- a/apps/couch/src/couch.app.src +++ b/apps/couch/src/couch.app.src @@ -1,7 +1,6 @@ {application, couch, [ - {description, "@package_name@"}, - {vsn, "@version@"}, - {modules, [@modules@]}, + {description, "Apache CouchDB"}, + {vsn, "1.0.1"}, {registered, [ couch_config, couch_db_update, @@ -20,10 +19,7 @@ couch_task_status, couch_view ]}, - {mod, {couch_app, [ - "%localconfdir%/@defaultini@", - "%localconfdir%/@localini@" - ]}}, - {applications, [kernel, stdlib]}, - {included_applications, [crypto, sasl, inets, oauth, ibrowse, mochiweb]} + {mod, {couch_app, []}}, + {applications, [kernel, stdlib, crypto, sasl, inets, oauth, ibrowse, + mochiweb, ssl]} ]}. |