-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
97 lines (86 loc) · 2.02 KB
/
Copy path.gitignore
File metadata and controls
97 lines (86 loc) · 2.02 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
############################################
# OS / Misc
############################################
.DS_Store
Thumbs.db
__MACOSX/
*.swp
*.swo
############################################
# Gradle
############################################
.gradle/
build/
!gradle/wrapper/gradle-wrapper.jar
############################################
# Java build output
############################################
out/
bin/
target/
############################################
# IDE
############################################
.idea/
*.iws
*.iml
*.ipr
.vscode/
.apt_generated
.classpath
.factorypath
.project
.settings/
.springBeans
.sts4-cache/
############################################
# Logs
############################################
logs/
*.log
############################################
# Env / Secrets
############################################
.env
.env.*
!.env.example
############################################
# Spring Boot configs
############################################
# 실제 로컬/운영 설정 파일은 Git에 올리지 않음
src/main/resources/application.yml
src/main/resources/application.yaml
src/main/resources/application-*.yml
src/main/resources/application-*.yaml
# 공유 가능한 예시 설정만 허용
!src/main/resources/application-example.yml
!src/main/resources/application-example.yaml
!src/test/resources/application-test.yml
!src/test/resources/application-test.yaml
############################################
# Docker configs
############################################
# 실제 로컬/운영 compose 파일은 Git에 올리지 않음
docker-compose.yml
docker-compose.*.yml
docker-compose.*.yaml
# 공유 가능한 예시 compose만 허용
!docker-compose.example.yml
!docker-compose.example.yaml
############################################
# Docker / Runtime data
############################################
**/*-data/
**/data/
*.pid
############################################
# Keys / Certificates
############################################
*.pem
*.key
*.crt
*.cer
*.p12
*.pfx
*.jks
*.keystore