mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
6 lines
170 B
Bash
6 lines
170 B
Bash
|
#!/bin/sh
|
||
|
echo "Checking can connect to mongo and redis"
|
||
|
cd /var/www/sharelatex && grunt check:redis
|
||
|
cd /var/www/sharelatex && grunt check:mongo
|
||
|
echo "All checks passed"
|