迁移代码到Git

This commit is contained in:
Neo
2025-11-18 02:32:00 +08:00
parent 7f87421678
commit c3749474c6
85 changed files with 185478 additions and 0 deletions

10
run_etl.sh Normal file
View File

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