mirror of
https://github.com/overleaf/toolkit.git
synced 2025-04-19 07:18:06 +02:00
Add full project history services to bin scripts
This commit is contained in:
parent
13fd14dde7
commit
f271787d3f
3 changed files with 8 additions and 3 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2023-10-24
|
||||||
|
### Added
|
||||||
|
- `bin/logs`: Pick up logs from history-v1 and project-history
|
||||||
|
|
||||||
## 2023-10-06
|
## 2023-10-06
|
||||||
### Added
|
### Added
|
||||||
- Updated default [`version`](https://github.com/overleaf/toolkit/blob/master/lib/config-seed/version) to `4.1.3`.
|
- Updated default [`version`](https://github.com/overleaf/toolkit/blob/master/lib/config-seed/version) to `4.1.3`.
|
||||||
|
|
|
@ -20,7 +20,7 @@ function usage() {
|
||||||
echo ""
|
echo ""
|
||||||
echo "Services: chat, clsi, contacts, docstore, document-updater,"
|
echo "Services: chat, clsi, contacts, docstore, document-updater,"
|
||||||
echo " filestore, notifications, real-time, spelling,"
|
echo " filestore, notifications, real-time, spelling,"
|
||||||
echo " tags, track-changes, web"
|
echo " tags, track-changes, web, project-history, history-v1"
|
||||||
echo ""
|
echo ""
|
||||||
echo "Options:"
|
echo "Options:"
|
||||||
echo " -f follow log output"
|
echo " -f follow log output"
|
||||||
|
|
5
bin/logs
5
bin/logs
|
@ -17,7 +17,8 @@ fi
|
||||||
|
|
||||||
DEFAULT_TAIL_LINES=20
|
DEFAULT_TAIL_LINES=20
|
||||||
ALL_SERVICES=(chat clsi contacts docstore document-updater filestore git-bridge \
|
ALL_SERVICES=(chat clsi contacts docstore document-updater filestore git-bridge \
|
||||||
mongo notifications real-time redis spelling tags track-changes web)
|
mongo notifications real-time redis spelling tags track-changes web \
|
||||||
|
history-v1 project-history)
|
||||||
|
|
||||||
LOGS_PID_FILE="/tmp/toolkit-logs.$$.pid"
|
LOGS_PID_FILE="/tmp/toolkit-logs.$$.pid"
|
||||||
|
|
||||||
|
@ -26,7 +27,7 @@ function usage() {
|
||||||
|
|
||||||
Services: chat, clsi, contacts, docstore, document-updater, filestore,
|
Services: chat, clsi, contacts, docstore, document-updater, filestore,
|
||||||
git-bridge, mongo, notifications, real-time, redis, spelling,
|
git-bridge, mongo, notifications, real-time, redis, spelling,
|
||||||
tags, track-changes, web
|
tags, track-changes, web, history-v1, project-history
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
-f follow log output
|
-f follow log output
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue