mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-20 13:13:43 +00:00
Convert server-ce-scripts module to ES modules GitOrigin-RevId: 516247b25b5bdbfd89fee4b99a88431097c827de
36 lines
916 B
Bash
Executable file
36 lines
916 B
Bash
Executable file
#!/bin/bash
|
|
# Thin wrapper on old grunt tasks to ease migrating.
|
|
|
|
set -e
|
|
set -x
|
|
TASK="$1"
|
|
shift 1
|
|
|
|
cd /overleaf/services/web
|
|
|
|
case "$TASK" in
|
|
user:create-admin)
|
|
echo "The grunt command is deprecated, run the create-user script using node instead"
|
|
node modules/server-ce-scripts/scripts/create-user.mjs --admin "$@"
|
|
;;
|
|
|
|
user:delete)
|
|
echo "The grunt command is deprecated, run the delete-user script using node instead"
|
|
node modules/server-ce-scripts/scripts/delete-user.mjs "$@"
|
|
;;
|
|
|
|
check:mongo)
|
|
echo "The grunt command is deprecated, run the check-mongodb script using node instead"
|
|
node modules/server-ce-scripts/scripts/check-mongodb.mjs
|
|
;;
|
|
|
|
check:redis)
|
|
echo "The grunt command is deprecated, run the check-redis script using node instead"
|
|
node modules/server-ce-scripts/scripts/check-redis.mjs
|
|
;;
|
|
|
|
*)
|
|
echo "Unknown task $TASK"
|
|
exit 1
|
|
;;
|
|
esac
|