代码迁移

This commit is contained in:
Neo
2025-11-18 02:28:47 +08:00
parent ccf3baca2b
commit 84e80841cd
86 changed files with 185483 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 "$@"