-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
97 lines (85 loc) · 3.56 KB
/
.gitignore
File metadata and controls
97 lines (85 loc) · 3.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# =============================================================================
# .gitignore — ComfyUI MCP Server (Python)
# =============================================================================
# -----------------------------------------------------------------------------
# Environment & Secrets / 环境变量与敏感配置
# -----------------------------------------------------------------------------
# Local env config with private keys / 包含私钥的本地配置,不提交
.env
# .env.example is intentionally tracked / .env.example 有意跟踪
# -----------------------------------------------------------------------------
# Python Runtime Cache / Python 运行时缓存
# -----------------------------------------------------------------------------
__pycache__/
# .pyc / .pyo / .pyd compiled bytecode / 编译字节码
*.py[cod]
*.pyd
*.pyo
*.egg
*.egg-info/
dist/
build/
.eggs/
MANIFEST
# -----------------------------------------------------------------------------
# Virtual Environment / 虚拟环境
# -----------------------------------------------------------------------------
.venv/
venv/
env/
ENV/
# -----------------------------------------------------------------------------
# Tests / 测试文件(本地测试脚本,含硬编码配置,不对外发布)
# -----------------------------------------------------------------------------
tests/
# -----------------------------------------------------------------------------
# Assets / 资产目录(存放本地生成的图片、视频等临时输出,体积大)
# 顶层 assets/ 不提交;skill 包内的 assets/ 属于发布内容,需跟踪
# -----------------------------------------------------------------------------
assets/
!comfyui-mcp-server-skill/assets/
!comfyui-mcp-server-skill/assets/**
# -----------------------------------------------------------------------------
# Skills ZIP / skills 打包文件(构建产物,可从 skills/ 目录重新生成)
# -----------------------------------------------------------------------------
skills.zip
# -----------------------------------------------------------------------------
# Workflow / 本地工作流数据(用户专属,含本地 ComfyUI 工作流 JSON)
# Runtime-generated API JSON & catalog files / 运行时生成的工作流 JSON 及目录文件
# -----------------------------------------------------------------------------
workflow/*.json
# -----------------------------------------------------------------------------
# IDE & Editor / IDE 和编辑器配置
# -----------------------------------------------------------------------------
.idea/
.vscode/
*.iml
*.ipr
*.iws
# -----------------------------------------------------------------------------
# OS-generated Files / 操作系统生成文件
# -----------------------------------------------------------------------------
.DS_Store
Thumbs.db
desktop.ini
# -----------------------------------------------------------------------------
# Logs / 日志文件
# -----------------------------------------------------------------------------
*.log
logs/
# -----------------------------------------------------------------------------
# Type Checking & Linting / 类型检查与 Lint 工具缓存
# -----------------------------------------------------------------------------
.mypy_cache/
.ruff_cache/
.pyright/
.dmypy.json
dmypy.json
# -----------------------------------------------------------------------------
# Testing & Coverage / 测试覆盖率报告
# -----------------------------------------------------------------------------
.pytest_cache/
.coverage
htmlcov/
coverage.xml
.history