removed tags service

This commit is contained in:
Miguel Serrano 2020-05-25 16:46:25 +02:00
parent 857e5620c5
commit 886e5f1054
4 changed files with 2 additions and 18 deletions

1
.gitignore vendored
View file

@ -11,7 +11,6 @@ clsi
filestore filestore
track-changes track-changes
docstore docstore
tags
chat chat
spelling spelling
real-time real-time

View file

@ -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

View file

@ -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

View file

@ -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",