# -----------------------------------------------------------------------------
# AIGC Auto Project · .gitignore
# -----------------------------------------------------------------------------

# ---- 凭据 / token（绝对不要 commit） ----
.env
token.txt
feishu_user_token.json

# ---- Python 缓存 ----
__pycache__/
*.pyc
*.pyo
*.pyd

# ---- 日志 / 临时状态 ----
*.log
*.log.*
json_export_state.json

# ---- 产物（生成的图/视频）----
outputs/

# ---- 编辑器 / IDE ----
.vscode/
.idea/
*.swp
*.swo
.DS_Store

# ---- 包构建产物 ----
build/
dist/
*.egg-info/
*.egg
.eggs/
.installed.cfg

# ---- 测试 / 覆盖率 ----
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.cache/

# ---- 虚拟环境 ----
.venv/
venv/
env/
.pypirc
