Skip to content

Commit

Permalink
use couch_replicator app.
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitc committed Dec 5, 2011
1 parent 42d243f commit d9a4893
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions rebar.config
Expand Up @@ -14,6 +14,10 @@
{couch_mrview, ".*", {git, "git://github.com/refuge/couch_mrview.git",
{branch, "master"}}},

%% couch replicator
{couch_replicator, ".*", {git, "git://github.com/refuge/couch_replicator.git",
{branch, "master"}}},

%% spatial indexer
{geocouch, ".*", {git, "git://github.com/refuge/geocouch.git",
{branch, master}}}
Expand Down
3 changes: 1 addition & 2 deletions rel/files/default.ini
Expand Up @@ -82,7 +82,6 @@ stats_aggregator={couch_stats_aggregator, start, []}
stats_collector={couch_stats_collector, start, []}
uuids={couch_uuids, start, []}
auth_cache={couch_auth_cache, start_link, []}
replication_manager={couch_replication_manager, start_link, []}
os_daemons={couch_os_daemons, start_link, []}
compaction_daemon={couch_compaction_daemon, start_link, []}

Expand All @@ -95,7 +94,7 @@ _utils = {couch_httpd_misc_handlers, handle_utils_dir_req, "{{platform_share_dir
_all_dbs = {couch_httpd_misc_handlers, handle_all_dbs_req}
_active_tasks = {couch_httpd_misc_handlers, handle_task_status_req}
_config = {couch_httpd_misc_handlers, handle_config_req}
_replicate = {couch_httpd_replicator, handle_req}
_replicate = {couch_replicator_httpd, handle_req}
_uuids = {couch_httpd_misc_handlers, handle_uuids_req}
_restart = {couch_httpd_misc_handlers, handle_restart_req}
_stats = {couch_httpd_stats_handlers, handle_stats_req}
Expand Down
6 changes: 5 additions & 1 deletion rel/reltool.config
Expand Up @@ -23,6 +23,7 @@
couch,
couch_index,
couch_mrview,
couch_replicator,
vtree,
geocouch
]},
Expand All @@ -41,15 +42,18 @@
{app, public_key, [{incl_cond, include}]},
{app, ssl, [{incl_cond, include}]},


%% dependencies
{app, mochiweb, [{incl_cond, include}]},
{app, oauth, [{incl_cond, include}]},
{app, ejson, [{incl_cond, include}]},
{app, snappy, [{incl_cond, include}]},
{app, ibrowse, [{incl_cond, include}]},

%% couchdb
{app, couch, [{incl_cond, include}]},
{app, couch_index, [{incl_cond, include}]},
{app, couch_mrview, [{incl_cond, include}]},
{app, couch_replicator, [{incl_cond, include}]},
{app, vtree, [{incl_cond, include}]},
{app, geocouch, [{incl_cond, include}]}
]}.
Expand Down

0 comments on commit d9a4893

Please sign in to comment.