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