From 38b72c01bf59ad66333b09c378554f82c968b046 Mon Sep 17 00:00:00 2001 From: jayfresh Date: Sat, 11 Oct 2014 12:49:22 +0100 Subject: [PATCH] swapping host to cloudant --- tiddlers/couchdbadaptor.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tiddlers/couchdbadaptor.js b/tiddlers/couchdbadaptor.js index f5d0da3..b8c558c 100644 --- a/tiddlers/couchdbadaptor.js +++ b/tiddlers/couchdbadaptor.js @@ -15,7 +15,8 @@ A sync adaptor module for synchronising with CouchDB function CouchAdaptor(options) { this.wiki = options.wiki; this.logger = new $tw.utils.Logger("CouchAdaptor"); - this.host = 'http://penrose.iriscouch.com'; + //this.host = 'http://penrose.iriscouch.com'; // TODO make configurable + this.host = 'https://penrose.cloudant.com'; // TODO make configurable this.urlPrefix = '/fragments-test'; // TODO make configurable this.designDocName = '/_design/fragments-test'; // TODO make configurable this.sessionUrl = '/_session';