mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
8 lines
209 B
Bash
8 lines
209 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
echo "Seeding mongo for e2e tests"
|
||
|
cd /overleaf/services/web
|
||
|
node modules/server-ce-scripts/scripts/seed-mongo
|
||
|
node modules/server-ce-scripts/scripts/check-redis
|
||
|
echo "mongo seeding complete"
|