Replace the prior release tree with the current plugin, frontend, tests, and documentation. Document retired node IDs and the public Gitea update source.
37 lines
354 B
Plaintext
37 lines
354 B
Plaintext
# Python 缓存
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
|
|
# 环境
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 用户配置(含 API Key,不提交)
|
|
.config
|
|
|
|
# 本地开发工具与浏览器测试状态
|
|
.claude/
|
|
.codex/
|
|
.playwright-mcp/
|
|
|
|
# 测试与覆盖率缓存
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|