f3cd56b78e
Use ~/.pouch, the pouch CLI, and .pouch.yaml as the SSOT container. Keep the inner skills/ packages, and store ACK project state in .pouch/ack instead of docs/ack.
34 lines
351 B
Plaintext
34 lines
351 B
Plaintext
# Python(pouch CLI 运行时产物)
|
||
__pycache__/
|
||
*.py[cod]
|
||
*$py.class
|
||
*.so
|
||
|
||
# 虚拟环境
|
||
.venv/
|
||
venv/
|
||
env/
|
||
|
||
# 打包 / 测试(若后续扩展)
|
||
*.egg-info/
|
||
.eggs/
|
||
dist/
|
||
build/
|
||
.pytest_cache/
|
||
.coverage
|
||
htmlcov/
|
||
|
||
# 编辑器 / IDE
|
||
.idea/
|
||
*.swp
|
||
*.swo
|
||
*~
|
||
|
||
# 系统文件
|
||
.DS_Store
|
||
Thumbs.db
|
||
|
||
# 本地环境配置(勿提交密钥)
|
||
.env
|
||
.env.*
|