#!/usr/bin/env bash
set -euo pipefail
PROJECT=/data/video-pipeline/Youtube-Video-Maker/Project/05062026-001-Phung-Hung
cd /data/video-pipeline/Youtube-Video-Maker
for step in \
  scripts_run_step_17_create_intro_segmented.py \
  scripts_run_step_18_final_package.py \
  scripts_run_step_19_final_qa_info.py; do
  echo "==== RUN $step $(date +%H:%M:%S) ===="
  ./.venv/bin/python "$PROJECT/$step"
done
echo "==== ALL DONE $(date +%H:%M:%S) ===="
