Skip to content

Commit c39e243

Browse files
authored
Merge pull request #70 from CommitField/dev
Merge: 2025. 02. 24 ๋ณ‘ํ•ฉ
2 parents c0bc119 + 881d2e7 commit c39e243

Some content is hidden

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

51 files changed

+1913
-129
lines changed

โ€Ž.gitignore

+89-1
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,92 @@ docker-compose.yaml
7777
db/
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

โ€Žbuild.gradle.kts

+15-2
Original file line numberDiff line numberDiff 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

@@ -59,7 +59,10 @@ dependencies {
5959

6060
//Swagger
6161
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.7.0")
62+
63+
//Web Socket
6264
implementation("org.java-websocket:Java-WebSocket:1.5.2")
65+
implementation ("org.springframework:spring-messaging")
6366

6467
// JWT
6568
implementation("io.jsonwebtoken:jjwt-api:0.12.6")
@@ -68,6 +71,16 @@ dependencies {
6871

6972
// WebClient
7073
implementation ("org.springframework.boot:spring-boot-starter-webflux")
74+
75+
76+
// aws
77+
implementation(platform("software.amazon.awssdk:bom:2.24.0"))
78+
implementation("software.amazon.awssdk:s3")
79+
80+
// Spring Security OAuth2
81+
implementation ("org.springframework.security:spring-security-oauth2-client:6.4.2") // Or the version you're using
82+
implementation ("org.springframework.security:spring-security-oauth2-core:6.4.2") // Or the version you're using
83+
7184
}
7285

7386
tasks.withType<Test> {

0 commit comments

Comments
ย (0)