Files
posthog/bin/migrate-minio-to-seaweedfs
Alex V a227a16675 feat: migrate replay from minio to seaweedfs (#41019)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-11-10 16:50:05 +01:00

13 lines
323 B
Bash
Executable File

#!/bin/bash
set -e
# Wrapper script for the MinIO to SeaweedFS migration tool
# This allows calling the migration from the root directory
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROJECT_ROOT="$(dirname "$SCRIPT_DIR")"
cd "$PROJECT_ROOT/plugin-server"
exec node bin/migrate-minio-to-seaweedfs.js "$@"