From 6ab07443e322ef9a029910f7b875b7af453d2dc6 Mon Sep 17 00:00:00 2001 From: James Allen Date: Wed, 5 Mar 2014 13:41:00 +0000 Subject: [PATCH] add in track-changes settings --- config/settings.development.coffee.example | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/settings.development.coffee.example b/config/settings.development.coffee.example index 8f8466bf8c..35a93cc6ba 100644 --- a/config/settings.development.coffee.example +++ b/config/settings.development.coffee.example @@ -86,6 +86,9 @@ module.exports = filestore: port: filestorePort = 3009 host: "localhost" + trackchanges: + port: trackchangesPort = 3015 + 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 @@ -101,6 +104,8 @@ module.exports = url: "http://localhost:#{clsiPort}" filestore: url: "http://localhost:#{filestorePort}" + trackchanges: + url: "http://localhost:#{trackchangesPort}" thirdPartyDataStore: url : "http://localhost:3002" emptyProjectFlushDelayMiliseconds: 5 * seconds