mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-23 23:00:08 +02:00

Convert server-ce-scripts module to ES modules GitOrigin-RevId: 516247b25b5bdbfd89fee4b99a88431097c827de
8 lines
228 B
Bash
Executable file
8 lines
228 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.mjs
|
|
node modules/server-ce-scripts/scripts/check-redis.mjs
|
|
echo "All checks passed"
|