File tree Expand file tree Collapse file tree 8 files changed +571
-3
lines changed
src/main/java/cmf/commitField Expand file tree Collapse file tree 8 files changed +571
-3
lines changed Original file line number Diff line number Diff line change @@ -77,4 +77,92 @@ docker-compose.yaml
7777db /
7878
7979# ## 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 {
4040 compileOnly(" org.projectlombok:lombok" )
4141 annotationProcessor(" org.projectlombok:lombok" )
4242
43- // DB
43+ // DB
4444 runtimeOnly(" com.h2database:h2" )
4545 runtimeOnly(" com.mysql:mysql-connector-j" )
4646 implementation(" org.springframework.boot:spring-boot-starter-data-jpa" )
4747
48- // redis
48+ // redis
4949 implementation(" org.springframework.boot:spring-boot-starter-data-redis" )
5050 implementation(" org.springframework.session:spring-session-data-redis" )
5151
@@ -68,6 +68,10 @@ dependencies {
6868
6969 // WebClient
7070 implementation (" org.springframework.boot:spring-boot-starter-webflux" )
71+
72+ // aws
73+ implementation(platform(" software.amazon.awssdk:bom:2.24.0" ))
74+ implementation(" software.amazon.awssdk:s3" )
7175}
7276
7377tasks.withType<Test > {
You can’t perform that action at this time.
0 commit comments