Files
feiqiu-ETL/run_etl.sh
2025-11-18 02:28:47 +08:00

11 lines
159 B
Bash

#!/bin/bash
# ETL运行脚本
# 加载环境变量
if [ -f .env ]; then
export $(cat .env | grep -v '^#' | xargs)
fi
# 运行ETL
python -m cli.main "$@"