mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
9 lines
187 B
Bash
Executable File
9 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"
|