mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-24 01:29:35 +02:00
[server-ce] add script for checking on old ShareLaTeX env vars GitOrigin-RevId: a60d6f7648d65c336054795affe91a349aa629cf
9 lines
220 B
Bash
Executable File
9 lines
220 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Checking can connect to mongo and redis"
|
|
cd /overleaf/services/web
|
|
node modules/server-ce-scripts/scripts/check-mongodb
|
|
node modules/server-ce-scripts/scripts/check-redis
|
|
echo "All checks passed"
|