-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy path.gitignore
More file actions
71 lines (63 loc) · 1.39 KB
/
.gitignore
File metadata and controls
71 lines (63 loc) · 1.39 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
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
tests/
docker/volume/
docker/dify/volumes/*
!docker/dify/docker/volumes/myscale/config/users.d/custom_users_config.xml
!docker/dify/docker/volumes/oceanbase/init.d/vec_memory.sql
!docker/dify/docker/volumes/opensearch/opensearch_dashboards.yml
!docker/dify/docker/volumes/sandbox/conf/config.yaml
!docker/dify/docker/volumes/sandbox/conf/config.yaml.example
!docker/dify/docker/volumes/sandbox/dependencies/python-requirements.txt
docker/deploy.log
web/node_modules/
web/dist/
.DS_Store
.idea/
.venv/
logs/
# 环境变量文件
.pytest_cache/
/vector_index/
docker/.env
*.log
.env.local
.vscode/
!.vscode/extensions.json
.cursor/
# claude code 配置信息
CLAUDE.md
.claude/
.spec-workflow/
test/
examples/
.langgraph_api/
# 确保新添加的源代码文件被追踪
# 注意:! 规则用于取消之前的忽略规则,确保这些文件类型总是被追踪
# 前端源代码文件 - 确保这些文件类型不会被忽略
!web/src/
!web/src/**/*.vue
!web/src/**/*.ts
!web/src/**/*.tsx
!web/src/**/*.js
!web/src/**/*.jsx
!web/src/**/*.scss
!web/src/**/*.css
!web/src/**/*.json
# 后端源代码文件 - 确保这些文件类型不会被忽略
!controllers/
!controllers/**/*.py
!services/
!services/**/*.py
!agent/
!agent/**/*.py
!common/
!common/**/*.py
!model/
!model/**/*.py
!config/
!config/**/*.py
!constants/
!constants/**/*.py