mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
12befda220
[server-ce] add script for checking on old ShareLaTeX env vars GitOrigin-RevId: a60d6f7648d65c336054795affe91a349aa629cf
8 lines
220 B
Bash
Executable file
8 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"
|