-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy path.gitignore
More file actions
176 lines (148 loc) · 3.3 KB
/
.gitignore
File metadata and controls
176 lines (148 loc) · 3.3 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
# ========================================
# Node.js 환경
# ========================================
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Coverage directory
coverage/
*.lcov
.nyc_output
# Instrumentation
.grunt
bower_components
.lock-wscript
# Compiled binary addons
build/Release
# Dependency directories
jspm_packages/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# ========================================
# 환경 변수 및 설정 파일
# ========================================
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# ========================================
# Build 및 Distribution
# ========================================
dist/
build/
out/
.cache
.parcel-cache
.next
.nuxt
.vuepress/dist
.serverless
.backup
*.backup
# ========================================
# OS 생성 파일
# ========================================
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
desktop.ini
# ========================================
# IDE 및 에디터 파일
# ========================================
.vscode/
.idea/
*.swp
*.swo
*~
# ========================================
# ChatForYou 프로젝트
# ========================================
# Desktop 앱 동기화 관련
chatforyou-desktop/src/.backup/
chatforyou-desktop/src/.build-info.json
chatforyou-desktop/.backup/
*.backup-*
sync-*.log
# SCSS 컴파일 결과물
src/static/css/*.map
chatforyou-desktop/src/static/css/*.map
# 프론트 빌드 결과물
chatforyou-desktop/src/static
chatforyou-desktop/src/templates
# 빌드 로그
build-scripts/.logs/
scripts/.logs/
# 임시 파일들
*.tmp
*.temp
.test-temp
# ========================================
# Spring Boot Backend 설정
# ========================================
springboot-backend/.gradle/
springboot-backend/build/
springboot-backend/out/
springboot-backend/bin/
springboot-backend/.apt_generated
springboot-backend/.classpath
springboot-backend/.factorypath
springboot-backend/.project
springboot-backend/.settings/
springboot-backend/.springBeans
springboot-backend/.sts4-cache
# 민감한 설정 파일들
springboot-backend/src/main/resources/application.properties
springboot-backend/src/main/resources/application-*.properties
springboot-backend/src/main/resources/ssl/
springboot-backend/src/main/resources/keystore/
springboot-backend/src/main/resources/secrets/
springboot-backend/src/main/resources/firebase/
# NetBeans (실제 사용 안 하면 삭제 가능)
springboot-backend/nbproject/private/
springboot-backend/nbbuild/
springboot-backend/dist/
springboot-backend/nbdist/
springboot-backend/.nb-gradle/
# 데이터베이스 관련
springboot-backend/src/main/resources/data/
springboot-backend/src/main/resources/geodata/
# ========================================
# figma-ai 설정
# ========================================
figma-plugin
# ========================================
# AI Tool 설정
# ========================================
.claude
.cursor
CLAUDE*.md
.agent
# 테스트 결과물
test-results/
coverage-report/
# 로그 파일들
*.log
logs/