This commit introduces several new analysis documents, including Auto-Match Load Performance Analysis, Folder Picker Analysis, Monorepo Migration Summary, and various performance analysis documents. Additionally, the installation scripts are updated to reflect changes in backend service paths, ensuring proper integration with the new backend structure. These enhancements provide better documentation and streamline the setup process for users.
17 lines
269 B
Bash
Executable File
17 lines
269 B
Bash
Executable File
#!/bin/bash
|
|
# Start RQ worker for PunimTag background jobs
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# Activate virtual environment if it exists
|
|
if [ -d "venv" ]; then
|
|
source venv/bin/activate
|
|
fi
|
|
|
|
# Set Python path
|
|
export PYTHONPATH="$(pwd)"
|
|
|
|
# Start worker
|
|
python -m backend.worker
|
|
|