From b495240d49a48339899fc1352d4345a430880785 Mon Sep 17 00:00:00 2001 From: James Allen Date: Wed, 26 Feb 2014 16:24:01 +0000 Subject: [PATCH] Add in track changes as a 'hidden' service --- server-ce/Gruntfile.coffee | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/server-ce/Gruntfile.coffee b/server-ce/Gruntfile.coffee index 55a75a293e..85d6a9b35a 100644 --- a/server-ce/Gruntfile.coffee +++ b/server-ce/Gruntfile.coffee @@ -20,6 +20,10 @@ SERVICES = [{ repo: "https://github.com/sharelatex/filestore-sharelatex.git" }] +TRACK_CHANGES = + name: "track-changes" + repo: "https://github.com/sharelatex/track-changes-sharelatex.git" + module.exports = (grunt) -> grunt.loadNpmTasks 'grunt-bunyan' @@ -28,7 +32,7 @@ module.exports = (grunt) -> grunt.loadNpmTasks 'grunt-concurrent' execute = {} - for service in SERVICES + for service in SERVICES.concat([TRACK_CHANGES]) execute[service.name] = src: "#{service.name}/app.js" @@ -66,7 +70,7 @@ module.exports = (grunt) -> "Config tasks": ["install:config"] "Checks": ["check", "check:redis", "check:latexmk", "check:s3", "check:make"] - for service in SERVICES + for service in SERVICES.concat([TRACK_CHANGES]) do (service) -> grunt.registerTask "install:#{service.name}", "Download and set up the #{service.name} service", () -> done = @async()