mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
[misc] align directory layout of server-ce/pro with production docker images GitOrigin-RevId: d3e6b9f8793e83df59f86105d511c6fb87c3eea3
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"
|