mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
8 lines
189 B
Bash
Executable file
8 lines
189 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Checking can connect to mongo and redis"
|
|
cd /var/www/sharelatex/web
|
|
node scripts/server-ce/check-mongodb
|
|
node scripts/server-ce/check-redis
|
|
echo "All checks passed"
|