-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
209 lines (173 loc) · 3.36 KB
/
.gitignore
File metadata and controls
209 lines (173 loc) · 3.36 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
# ================================
# VocaTa 项目统一 GitIgnore 配置
# ================================
# ================================
# 后端 (Spring Boot) 相关
# ================================
vocata-server/target/
vocata-server/!.mvn/wrapper/maven-wrapper.jar
vocata-server/!**/src/main/**/target/
vocata-server/!**/src/test/**/target/
# Maven
**/target/
**/.mvn/
**/mvnw
**/mvnw.cmd
# ================================
# 前端 (Vue 3 + Vite + Element Plus) 相关
# ================================
# 前端项目依赖
**/node_modules/
**/npm-debug.log*
**/yarn-debug.log*
**/yarn-error.log*
**/lerna-debug.log*
# 前端构建产物
**/dist/
**/build/
**/.vite/
**/coverage/
# 前端环境文件
**/.env
**/.env.local
**/.env.development.local
**/.env.test.local
**/.env.production.local
# 包管理器锁文件 (Vue项目推荐保留package-lock.json)
# **/package-lock.json
**/yarn.lock
**/pnpm-lock.yaml
# ================================
# Vue 3 + Vite 特定文件
# ================================
# Vite缓存
**/.vite/
# Vue特定
**/.vue-temp/
# 测试相关
**/coverage/
**/.nyc_output/
**/test-results/
# Cypress
**/cypress/videos/
**/cypress/screenshots/
# ================================
# Element Plus 相关
# ================================
# 如果使用主题定制
**/theme/
**/custom-theme/
# ================================
# 开发工具相关
# ================================
# IDE
**/.idea/
**/.vscode/
*.swp
*.swo
*~
# Eclipse
**/.project
**/.classpath
**/.c9/
**/.settings/
# IntelliJ IDEA
*.iml
*.ipr
*.iws
# ================================
# 操作系统相关
# ================================
# macOS
.DS_Store
.AppleDouble
.LSOverride
Icon
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
# Linux
*~
# ================================
# 日志文件
# ================================
**/logs/
**/*.log
**/npm-debug.log*
**/yarn-debug.log*
**/yarn-error.log*
# ================================
# 临时文件
# ================================
**/tmp/
**/temp/
**/.tmp/
**/.cache/
# ================================
# 数据库相关
# ================================
**/*.sqlite
**/*.db
# 数据库配置
**/database.yml
# ================================
# 证书和密钥
# ================================
**/*.pem
**/*.key
**/*.crt
**/*.p12
**/*.jks
# ================================
# 备份文件
# ================================
**/*.bak
**/*.backup
**/*.orig
# ================================
# 压缩包
# ================================
**/*.zip
**/*.tar.gz
**/*.rar
# ================================
# 自定义忽略 (项目特定)
# ================================
# 上传文件目录
**/uploads/
**/static/uploads/
# 文档生成
**/.docs/
**/.local/
# 测试覆盖率报告
**/coverage/
**/.nyc_output/
# todo file
**/.todo/
# ai task
**/.specs/
**/application-local.yml
# ================================
# 保留重要配置文件示例
# ================================
# 保留配置文件模板,但忽略实际配置
!**/.env.example
!**/application-example.yml
!**/config.example.js
/resources/application-local.yml
# local workspace artifacts
/.codex
/test.sh
/.superpowers/
/.claude/
/.venv/
/.worktrees/
# backend IDE/build artifacts
/vocata-server/.factorypath
/vocata-server/bin/
# planning / progress docs
/docs/superpowers/
# generated local avatar assets
/vocata-web/public/avatars/
/scripts/generate_avatars.py