File tree Expand file tree Collapse file tree 10 files changed +671
-3
lines changed
src/main/java/cmf/commitField Expand file tree Collapse file tree 10 files changed +671
-3
lines changed Original file line number Diff line number Diff line change @@ -77,4 +77,92 @@ docker-compose.yaml
77
77
db /
78
78
79
79
# ## secret ํ๋กํ
80
- application-secret.yml
80
+ application-secret.yml
81
+
82
+ # ## Terraform ###
83
+ # Terraform ์ํ ํ์ผ
84
+ * .tfstate
85
+ * .tfstate. *
86
+
87
+ # Terraform ๋ณ์ ํ์ผ
88
+ * .tfvars
89
+ * .tfvars.json
90
+
91
+ # ๋ก์ปฌ Terraform ๋๋ ํ ๋ฆฌ
92
+ ** /.terraform /*
93
+
94
+ # ์ถฉ๋ ๋ก๊ทธ ํ์ผ
95
+ crash.log
96
+ crash. * .log
97
+
98
+ # Terraform ์ฌ์ ์ ํ์ผ
99
+ override.tf
100
+ override.tf.json
101
+ * _override.tf
102
+ * _override.tf.json
103
+
104
+ # Terraform CLI ์ค์ ํ์ผ
105
+ .terraformrc
106
+ terraform.rc
107
+
108
+ #
109
+ .terraform.lock.hcl
110
+
111
+ # ## macOS ###
112
+ # General
113
+ .DS_Store
114
+ .AppleDouble
115
+ .LSOverride
116
+
117
+ # Icon must end with two \r
118
+ Icon
119
+
120
+
121
+ # Thumbnails
122
+ ._ *
123
+
124
+ # Files that might appear in the root of a volume
125
+ .DocumentRevisions-V100
126
+ .fseventsd
127
+ .Spotlight-V100
128
+ .TemporaryItems
129
+ .Trashes
130
+ .VolumeIcon.icns
131
+ .com.apple.timemachine.donotpresent
132
+
133
+ # Directories potentially created on remote AFP share
134
+ .AppleDB
135
+ .AppleDesktop
136
+ Network Trash Folder
137
+ Temporary Items
138
+ .apdisk
139
+
140
+ # ## macOS Patch ###
141
+ # iCloud generated files
142
+ * .icloud
143
+
144
+ # ## Windows ###
145
+ # Windows thumbnail cache files
146
+ Thumbs.db
147
+ Thumbs.db:encryptable
148
+ ehthumbs.db
149
+ ehthumbs_vista.db
150
+
151
+ # Dump file
152
+ * .stackdump
153
+
154
+ # Folder config file
155
+ [Dd ]esktop.ini
156
+
157
+ # Recycle Bin used on file shares
158
+ $RECYCLE.BIN /
159
+
160
+ # Windows Installer files
161
+ * .cab
162
+ * .msi
163
+ * .msix
164
+ * .msm
165
+ * .msp
166
+
167
+ # Windows shortcuts
168
+ * .lnk
Original file line number Diff line number Diff line change @@ -40,12 +40,12 @@ dependencies {
40
40
compileOnly(" org.projectlombok:lombok" )
41
41
annotationProcessor(" org.projectlombok:lombok" )
42
42
43
- // DB
43
+ // DB
44
44
runtimeOnly(" com.h2database:h2" )
45
45
runtimeOnly(" com.mysql:mysql-connector-j" )
46
46
implementation(" org.springframework.boot:spring-boot-starter-data-jpa" )
47
47
48
- // redis
48
+ // redis
49
49
implementation(" org.springframework.boot:spring-boot-starter-data-redis" )
50
50
implementation(" org.springframework.session:spring-session-data-redis" )
51
51
@@ -72,6 +72,11 @@ dependencies {
72
72
// WebClient
73
73
implementation (" org.springframework.boot:spring-boot-starter-webflux" )
74
74
75
+
76
+ // aws
77
+ implementation(platform(" software.amazon.awssdk:bom:2.24.0" ))
78
+ implementation(" software.amazon.awssdk:s3" )
79
+
75
80
// Spring Security OAuth2
76
81
implementation (" org.springframework.security:spring-security-oauth2-client:6.4.2" ) // Or the version you're using
77
82
implementation (" org.springframework.security:spring-security-oauth2-core:6.4.2" ) // Or the version you're using
You canโt perform that action at this time.
0 commit comments