123456789101112131415161718192021222324252627 |
- #!/bin/sh
- set -e
- COMMAND=$1 && shift 1
- case "$COMMAND" in
- 'start-local')
- echo "Starting Web in Local Mode..."
- yarn workspace @standardnotes/files-server start:local
- ;;
- 'start-web' )
- echo "Starting Web..."
- yarn workspace @standardnotes/files-server start
- ;;
- 'start-worker' )
- echo "Starting Worker..."
- yarn workspace @standardnotes/files-server worker
- ;;
- * )
- echo "Unknown command"
- ;;
- esac
- exec "$@"
|