初始提交:飞球 ETL 系统全量代码

This commit is contained in:
Neo
2026-02-13 08:05:34 +08:00
commit 3c51f5485d
441 changed files with 117631 additions and 0 deletions

10
run_etl.sh Normal file
View File

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