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