mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge branch 'master' of https://github.com/sharelatex/sharelatex
This commit is contained in:
commit
3f63497d9d
2 changed files with 45 additions and 41 deletions
|
@ -10,47 +10,8 @@ async = require "async"
|
||||||
settings = require("settings-sharelatex")
|
settings = require("settings-sharelatex")
|
||||||
|
|
||||||
|
|
||||||
SERVICES = [{
|
SERVICES = require("./config/services")
|
||||||
name: "web"
|
|
||||||
repo: "https://github.com/sharelatex/web-sharelatex.git"
|
|
||||||
version: "master"
|
|
||||||
}, {
|
|
||||||
name: "real-time"
|
|
||||||
repo: "https://github.com/sharelatex/real-time-sharelatex.git"
|
|
||||||
version: "master"
|
|
||||||
}, {
|
|
||||||
name: "document-updater"
|
|
||||||
repo: "https://github.com/sharelatex/document-updater-sharelatex.git"
|
|
||||||
version: "master"
|
|
||||||
}, {
|
|
||||||
name: "clsi"
|
|
||||||
repo: "https://github.com/sharelatex/clsi-sharelatex.git"
|
|
||||||
version: "master"
|
|
||||||
}, {
|
|
||||||
name: "filestore"
|
|
||||||
repo: "https://github.com/sharelatex/filestore-sharelatex.git"
|
|
||||||
version: "master"
|
|
||||||
}, {
|
|
||||||
name: "track-changes"
|
|
||||||
repo: "https://github.com/sharelatex/track-changes-sharelatex.git"
|
|
||||||
version: "master"
|
|
||||||
}, {
|
|
||||||
name: "docstore"
|
|
||||||
repo: "https://github.com/sharelatex/docstore-sharelatex.git"
|
|
||||||
version: "master"
|
|
||||||
}, {
|
|
||||||
name: "chat"
|
|
||||||
repo: "https://github.com/sharelatex/chat-sharelatex.git"
|
|
||||||
version: "master"
|
|
||||||
}, {
|
|
||||||
name: "tags"
|
|
||||||
repo: "https://github.com/sharelatex/tags-sharelatex.git"
|
|
||||||
version: "master"
|
|
||||||
}, {
|
|
||||||
name: "spelling"
|
|
||||||
repo: "https://github.com/sharelatex/spelling-sharelatex.git"
|
|
||||||
version: "master"
|
|
||||||
}]
|
|
||||||
module.exports = (grunt) ->
|
module.exports = (grunt) ->
|
||||||
grunt.loadNpmTasks 'grunt-bunyan'
|
grunt.loadNpmTasks 'grunt-bunyan'
|
||||||
grunt.loadNpmTasks 'grunt-execute'
|
grunt.loadNpmTasks 'grunt-execute'
|
||||||
|
|
43
server-ce/config/services.js
Normal file
43
server-ce/config/services.js
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
module.exports =
|
||||||
|
|
||||||
|
[{
|
||||||
|
name: "web",
|
||||||
|
repo: "https://github.com/sharelatex/web-sharelatex.git",
|
||||||
|
version: "master"
|
||||||
|
}, {
|
||||||
|
name: "real-time",
|
||||||
|
repo: "https://github.com/sharelatex/real-time-sharelatex.git",
|
||||||
|
version: "master"
|
||||||
|
}, {
|
||||||
|
name: "document-updater",
|
||||||
|
repo: "https://github.com/sharelatex/document-updater-sharelatex.git",
|
||||||
|
version: "master"
|
||||||
|
}, {
|
||||||
|
name: "clsi",
|
||||||
|
repo: "https://github.com/sharelatex/clsi-sharelatex.git",
|
||||||
|
version: "master"
|
||||||
|
}, {
|
||||||
|
name: "filestore",
|
||||||
|
repo: "https://github.com/sharelatex/filestore-sharelatex.git",
|
||||||
|
version: "master"
|
||||||
|
}, {
|
||||||
|
name: "track-changes",
|
||||||
|
repo: "https://github.com/sharelatex/track-changes-sharelatex.git",
|
||||||
|
version: "master"
|
||||||
|
}, {
|
||||||
|
name: "docstore",
|
||||||
|
repo: "https://github.com/sharelatex/docstore-sharelatex.git",
|
||||||
|
version: "master"
|
||||||
|
}, {
|
||||||
|
name: "chat",
|
||||||
|
repo: "https://github.com/sharelatex/chat-sharelatex.git",
|
||||||
|
version: "master"
|
||||||
|
}, {
|
||||||
|
name: "tags",
|
||||||
|
repo: "https://github.com/sharelatex/tags-sharelatex.git",
|
||||||
|
version: "master"
|
||||||
|
}, {
|
||||||
|
name: "spelling",
|
||||||
|
repo: "https://github.com/sharelatex/spelling-sharelatex.git",
|
||||||
|
version: "master"
|
||||||
|
}]
|
Loading…
Reference in a new issue