mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
removed tags service
This commit is contained in:
parent
8ef8a359e7
commit
8c7f96c105
4 changed files with 2 additions and 18 deletions
1
server-ce/.gitignore
vendored
1
server-ce/.gitignore
vendored
|
@ -11,7 +11,6 @@ clsi
|
||||||
filestore
|
filestore
|
||||||
track-changes
|
track-changes
|
||||||
docstore
|
docstore
|
||||||
tags
|
|
||||||
chat
|
chat
|
||||||
spelling
|
spelling
|
||||||
real-time
|
real-time
|
||||||
|
|
|
@ -51,7 +51,6 @@ This repository does not contain any code. It acts a wrapper and toolkit for man
|
||||||
| **[filestore](https://github.com/overleaf/filestore)** | An API for performing CRUD (Create, Read, Update and Delete) operations on binary files (like images) stored in Overleaf. |
|
| **[filestore](https://github.com/overleaf/filestore)** | An API for performing CRUD (Create, Read, Update and Delete) operations on binary files (like images) stored in Overleaf. |
|
||||||
| **[track-changes](https://github.com/overleaf/track-changes)** | An API for compressing and storing the updates applied to a document, and then rendering a diff of the changes between any two time points. |
|
| **[track-changes](https://github.com/overleaf/track-changes)** | An API for compressing and storing the updates applied to a document, and then rendering a diff of the changes between any two time points. |
|
||||||
| **[chat](https://github.com/overleaf/chat)** | The backend API for storing and fetching chat messages. |
|
| **[chat](https://github.com/overleaf/chat)** | The backend API for storing and fetching chat messages. |
|
||||||
| **[tags](https://github.com/overleaf/tags)** | The backend API for managing project tags (folders). |
|
|
||||||
| **[spelling](https://github.com/overleaf/spelling)** | An API for running server-side spelling checking on Overleaf documents. |
|
| **[spelling](https://github.com/overleaf/spelling)** | An API for running server-side spelling checking on Overleaf documents. |
|
||||||
|
|
||||||
## Overleaf Docker Image
|
## Overleaf Docker Image
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
export SHARELATEX_CONFIG=/etc/sharelatex/settings.coffee
|
|
||||||
|
|
||||||
NODE_PARAMS=""
|
|
||||||
if [ "$DEBUG_NODE" == "true" ]; then
|
|
||||||
echo "running debug - tags"
|
|
||||||
NODE_PARAMS="--inspect=0.0.0.0:30120"
|
|
||||||
fi
|
|
||||||
|
|
||||||
exec /sbin/setuser www-data /usr/bin/node $NODE_PARAMS /var/www/sharelatex/tags/app.js >> /var/log/sharelatex/tags.log 2>&1
|
|
|
@ -32,10 +32,6 @@ module.exports =
|
||||||
name: "chat",
|
name: "chat",
|
||||||
repo: "https://github.com/sharelatex/chat-sharelatex.git",
|
repo: "https://github.com/sharelatex/chat-sharelatex.git",
|
||||||
version: "master"
|
version: "master"
|
||||||
}, {
|
|
||||||
name: "tags",
|
|
||||||
repo: "https://github.com/sharelatex/tags-sharelatex.git",
|
|
||||||
version: "master"
|
|
||||||
}, {
|
}, {
|
||||||
name: "spelling",
|
name: "spelling",
|
||||||
repo: "https://github.com/sharelatex/spelling-sharelatex.git",
|
repo: "https://github.com/sharelatex/spelling-sharelatex.git",
|
||||||
|
|
Loading…
Reference in a new issue