-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
134 lines (123 loc) · 2.08 KB
/
.gitignore
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
# 프로젝트 공통
HELP.md
# Gradle & Maven 빌드 산출물
.gradle/
build/
target/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/
# STS 관련 파일
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/
# IntelliJ IDEA 관련 파일 및 캐시
.idea/
*.iws
*.iml
*.ipr
out/
!**/src/main/**/out/
!**/src/test/**/out/
# 사용자 및 로컬 설정 (자동 생성되어 재설정 가능한 파일들)
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
# AWS 관련 IntelliJ 설정
.idea/**/aws.xml
# 생성된 파일 및 민감 정보 포함 파일들
.idea/**/contentModel.xml
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
.idea/**/gradle.xml
.idea/**/libraries
# 추가 캐시 및 플러그인 관련
.idea/**/mongoSettings.xml
.idea/sonarlint/
.idea/**/sonarIssues.xml
.idea/**/markdown-navigator*
.idea/$CACHE_FILE$
.idea/codestream.xml
.idea/**/azureSettings.xml
.idea/caches/
.idea_modules/
atlassian-ide-plugin.xml
.idea/replstate.xml
# CMake 빌드 디렉토리
cmake-build-*/
# NetBeans 관련 파일
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
# VS Code 관련 설정
.vscode/
# Java 관련 파일
*.class
*.ctxt
.mtj.tmp/
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
hs_err_pid*
replay_pid*
# macOS 관련 파일
.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
*.icloud
# Windows 관련 파일
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
*.stackdump
[Dd]esktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msix
*.msm
*.msp
*.lnk
# 환경 변수 및 임시 파일
.env
tmp/
temp/
# Docker 로컬 오버라이드 파일 (로컬 개발 시만 사용)
docker-compose.override.yml
*.yml
*.yaml