From 6bd85467db0a45553807aec3f2a7cae93d1110bf Mon Sep 17 00:00:00 2001 From: James Allen Date: Wed, 30 Apr 2014 11:16:49 +0100 Subject: [PATCH] add in docstore to settings --- server-ce/config/settings.development.coffee.example | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/server-ce/config/settings.development.coffee.example b/server-ce/config/settings.development.coffee.example index a54ae0a9cc..10c893dd30 100644 --- a/server-ce/config/settings.development.coffee.example +++ b/server-ce/config/settings.development.coffee.example @@ -94,6 +94,9 @@ module.exports = trackchanges: port: trackchangesPort = 3015 host: "localhost" + docstore: + port: docstorePort = 3016 + host: "localhost" # Tell each service where to find the other services. If everything # is running locally then this is easy, but they exist as separate config @@ -111,6 +114,8 @@ module.exports = url: "http://localhost:#{filestorePort}" trackchanges: url: "http://localhost:#{trackchangesPort}" + docstore: + url: "http://localhost:#{docstorePort}" thirdPartyDataStore: url : "http://localhost:3002" emptyProjectFlushDelayMiliseconds: 5 * seconds