mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Add in tags and chat services
This commit is contained in:
parent
8648407435
commit
e3d3dd83ae
3 changed files with 20 additions and 5 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -8,6 +8,9 @@ clsi
|
||||||
filestore
|
filestore
|
||||||
track-changes
|
track-changes
|
||||||
docstore
|
docstore
|
||||||
|
tags
|
||||||
|
chat
|
||||||
|
spelling
|
||||||
|
|
||||||
compiles
|
compiles
|
||||||
cache
|
cache
|
||||||
|
|
|
@ -24,6 +24,12 @@ SERVICES = [{
|
||||||
}, {
|
}, {
|
||||||
name: "docstore"
|
name: "docstore"
|
||||||
repo: "https://github.com/sharelatex/docstore-sharelatex.git"
|
repo: "https://github.com/sharelatex/docstore-sharelatex.git"
|
||||||
|
}, {
|
||||||
|
name: "chat"
|
||||||
|
repo: "https://github.com/sharelatex/chat-sharelatex.git"
|
||||||
|
}, {
|
||||||
|
name: "tags"
|
||||||
|
repo: "https://github.com/sharelatex/tags-sharelatex.git"
|
||||||
}]
|
}]
|
||||||
|
|
||||||
module.exports = (grunt) ->
|
module.exports = (grunt) ->
|
||||||
|
|
|
@ -85,12 +85,18 @@ module.exports =
|
||||||
documentupdater:
|
documentupdater:
|
||||||
port: docUpdaterPort = 3003
|
port: docUpdaterPort = 3003
|
||||||
host: "localhost"
|
host: "localhost"
|
||||||
clsi:
|
|
||||||
port: clsiPort = 3013
|
|
||||||
host: "localhost"
|
|
||||||
filestore:
|
filestore:
|
||||||
port: filestorePort = 3009
|
port: filestorePort = 3009
|
||||||
host: "localhost"
|
host: "localhost"
|
||||||
|
chat:
|
||||||
|
port: chatPort = 3010
|
||||||
|
host: "localhost"
|
||||||
|
tags:
|
||||||
|
port: tagsPort = 3012
|
||||||
|
host: "localhost"
|
||||||
|
clsi:
|
||||||
|
port: clsiPort = 3013
|
||||||
|
host: "localhost"
|
||||||
trackchanges:
|
trackchanges:
|
||||||
port: trackchangesPort = 3015
|
port: trackchangesPort = 3015
|
||||||
host: "localhost"
|
host: "localhost"
|
||||||
|
@ -120,7 +126,7 @@ module.exports =
|
||||||
url : "http://localhost:3002"
|
url : "http://localhost:3002"
|
||||||
emptyProjectFlushDelayMiliseconds: 5 * seconds
|
emptyProjectFlushDelayMiliseconds: 5 * seconds
|
||||||
tags:
|
tags:
|
||||||
url :"http://localhost:3012"
|
url :"http://localhost:#{tagsPort}"
|
||||||
spelling:
|
spelling:
|
||||||
url : "http://localhost:3005"
|
url : "http://localhost:3005"
|
||||||
versioning:
|
versioning:
|
||||||
|
@ -133,7 +139,7 @@ module.exports =
|
||||||
apiKey: ""
|
apiKey: ""
|
||||||
subdomain: ""
|
subdomain: ""
|
||||||
chat:
|
chat:
|
||||||
url: "http://localhost:3010"
|
url: "http://localhost:#{chatPort}"
|
||||||
templates:
|
templates:
|
||||||
port: 3007
|
port: 3007
|
||||||
blog:
|
blog:
|
||||||
|
|
Loading…
Reference in a new issue