Enable full project search in Community Edition and Server Pro (#25753)

GitOrigin-RevId: 1def9c3e190c907d41b7f822831e12c8609e9c7c
This commit is contained in:
Alf Eaton
2025-07-02 11:27:02 +01:00
committed by Copybot
parent 06153de0aa
commit 58303de9f4
5 changed files with 34 additions and 8 deletions

View File

@@ -42,7 +42,7 @@ To do this, use the included `bin/dev` script:
bin/dev
```
This will start all services using `nodemon`, which will automatically monitor the code and restart the services as necessary.
This will start all services using `node --watch`, which will automatically monitor the code and restart the services as necessary.
To improve performance, you can start only a subset of the services in development mode by providing a space-separated list to the `bin/dev` script:

View File

@@ -6,14 +6,17 @@ DOCUMENT_UPDATER_HOST=document-updater
FILESTORE_HOST=filestore
GRACEFUL_SHUTDOWN_DELAY_SECONDS=0
HISTORY_V1_HOST=history-v1
HISTORY_REDIS_HOST=redis
LISTEN_ADDRESS=0.0.0.0
MONGO_HOST=mongo
MONGO_URL=mongodb://mongo/sharelatex?directConnection=true
NOTIFICATIONS_HOST=notifications
PROJECT_HISTORY_HOST=project-history
QUEUES_REDIS_HOST=redis
REALTIME_HOST=real-time
REDIS_HOST=redis
SESSION_SECRET=foo
V1_HISTORY_HOST=history-v1
WEBPACK_HOST=webpack
WEB_API_PASSWORD=overleaf
WEB_API_USER=overleaf

View File

@@ -113,7 +113,7 @@ services:
- ../services/real-time/config:/overleaf/services/real-time/config
web:
command: ["node", "--watch", "app.js", "--watch-locales"]
command: ["node", "--watch", "app.mjs", "--watch-locales"]
environment:
- NODE_OPTIONS=--inspect=0.0.0.0:9229
ports: