-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
45 lines (42 loc) · 786 Bytes
/
.gitignore
File metadata and controls
45 lines (42 loc) · 786 Bytes
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
# === Root (공통) ===
.DS_Store
.vscode/
.idea/
**/logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# OS 임시
Thumbs.db
# === Backend (Spring Boot / Gradle) ===
backend/.gradle/
backend/.gradle-cache/
backend/.gradle-temp/
backend/build/
backend/out/
backend/bin/
backend/.settings/
backend/.classpath
backend/.project
backend/.factorypath
backend/.apt_generated
backend/.springBeans
backend/.sts4-cache
backend/.idea/
# gradle wrapper는 커밋 유지(jar/props 모두 포함 권장)
!backend/gradle/wrapper/gradle-wrapper.jar
!backend/gradle/wrapper/gradle-wrapper.properties
# === Frontend (React/Vite) ===
frontend/node_modules/
frontend/dist/
frontend/dist-ssr/
frontend/.vite/
frontend/*.local