Skip to content

Commit 8fe860c

Browse files
authored
Merge branch 'dev' into feat/#78
2 parents 069431a + a2503d1 commit 8fe860c

File tree

86 files changed

+2927
-109
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+2927
-109
lines changed

โ€Ž.gitignoreโ€Ž

Lines changed: 91 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,96 @@ docker-compose.yaml
7575

7676
### dbํŒŒ์ผ
7777
db/
78+
.docker
79+
data/
7880

7981
### secret ํ”„๋กœํ•„
80-
application-secret.yml
82+
application-secret.yml
83+
84+
### Terraform ###
85+
# Terraform ์ƒํƒœ ํŒŒ์ผ
86+
*.tfstate
87+
*.tfstate.*
88+
89+
# Terraform ๋ณ€์ˆ˜ ํŒŒ์ผ
90+
*.tfvars
91+
*.tfvars.json
92+
93+
# ๋กœ์ปฌ Terraform ๋””๋ ‰ํ† ๋ฆฌ
94+
**/.terraform/*
95+
96+
# ์ถฉ๋Œ ๋กœ๊ทธ ํŒŒ์ผ
97+
crash.log
98+
crash.*.log
99+
100+
# Terraform ์žฌ์ •์˜ ํŒŒ์ผ
101+
override.tf
102+
override.tf.json
103+
*_override.tf
104+
*_override.tf.json
105+
106+
# Terraform CLI ์„ค์ • ํŒŒ์ผ
107+
.terraformrc
108+
terraform.rc
109+
110+
#
111+
.terraform.lock.hcl
112+
113+
### macOS ###
114+
# General
115+
.DS_Store
116+
.AppleDouble
117+
.LSOverride
118+
119+
# Icon must end with two \r
120+
Icon
121+
122+
123+
# Thumbnails
124+
._*
125+
126+
# Files that might appear in the root of a volume
127+
.DocumentRevisions-V100
128+
.fseventsd
129+
.Spotlight-V100
130+
.TemporaryItems
131+
.Trashes
132+
.VolumeIcon.icns
133+
.com.apple.timemachine.donotpresent
134+
135+
# Directories potentially created on remote AFP share
136+
.AppleDB
137+
.AppleDesktop
138+
Network Trash Folder
139+
Temporary Items
140+
.apdisk
141+
142+
### macOS Patch ###
143+
# iCloud generated files
144+
*.icloud
145+
146+
### Windows ###
147+
# Windows thumbnail cache files
148+
Thumbs.db
149+
Thumbs.db:encryptable
150+
ehthumbs.db
151+
ehthumbs_vista.db
152+
153+
# Dump file
154+
*.stackdump
155+
156+
# Folder config file
157+
[Dd]esktop.ini
158+
159+
# Recycle Bin used on file shares
160+
$RECYCLE.BIN/
161+
162+
# Windows Installer files
163+
*.cab
164+
*.msi
165+
*.msix
166+
*.msm
167+
*.msp
168+
169+
# Windows shortcuts
170+
*.lnk

โ€Žbuild.gradle.ktsโ€Ž

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,27 @@ dependencies {
6464

6565
// WebClient
6666
implementation ("org.springframework.boot:spring-boot-starter-webflux")
67+
68+
69+
// aws
70+
implementation(platform("software.amazon.awssdk:bom:2.24.0"))
71+
implementation("software.amazon.awssdk:s3")
72+
73+
// Spring Security OAuth2
74+
implementation ("org.springframework.security:spring-security-oauth2-client:6.4.2") // Or the version you're using
75+
implementation ("org.springframework.security:spring-security-oauth2-core:6.4.2") // Or the version you're using
76+
77+
// Spring Kafka
78+
implementation("org.springframework.kafka:spring-kafka")
79+
80+
// Kafka ํด๋ผ์ด์–ธํŠธ (Redpanda์™€ ํ˜ธํ™˜)
81+
implementation("org.apache.kafka:kafka-clients:3.6.0")
82+
83+
// JSON ์ง๋ ฌํ™”/์—ญ์ง๋ ฌํ™” (Kafka ๋ฉ”์‹œ์ง€ ์ฒ˜๋ฆฌ)
84+
implementation("com.fasterxml.jackson.core:jackson-databind")
85+
86+
// ํ…Œ์ŠคํŠธ์šฉ Kafka ์ž„๋ฒ ๋””๋“œ ์„œ๋ฒ„ (์„ ํƒ ์‚ฌํ•ญ)
87+
testImplementation("org.springframework.kafka:spring-kafka-test")
6788
}
6889

6990
tasks.withType<Test> {

0 commit comments

Comments
ย (0)