add go bench client
This commit is contained in:
14
migrate_files.sh
Executable file
14
migrate_files.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
# Wrapper script for file migration
|
||||
|
||||
cd "$(dirname "$0")"
|
||||
|
||||
# Check if venv exists
|
||||
if [ -d "backend/venv" ]; then
|
||||
source backend/venv/bin/activate
|
||||
elif [ -d "venv" ]; then
|
||||
source venv/bin/activate
|
||||
fi
|
||||
|
||||
# Run migration
|
||||
python3 backend/migrate_file_organization.py "$@"
|
||||
Reference in New Issue
Block a user