Skip to content

Commit

Permalink
Merge pull request #91 from Team-Wander/90-profile-image
Browse files Browse the repository at this point in the history
이미지 업로드 환경 설정
  • Loading branch information
yusung103 authored Oct 17, 2024
2 parents 1546c07 + 431aba1 commit 3b34b1b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'

implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'

implementation("org.springframework.boot:spring-boot-starter-data-redis")
}

Expand Down
17 changes: 15 additions & 2 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,19 @@ spring:
redis:
host: ${REDIS_HOST}
port: ${REDIS_PORT}

jwt:
secret: ${JWT_SECRET}
secret: ${JWT_SECRET}

cloud:
aws:
s3:
bucket: ${BUKET_NAME}
credentials:
access-key: ${ACCESS_KEY}
secret-key: ${SECRET_KEY}
region:
static: ap-northeast-2
auto: false
stack:
auto: false

0 comments on commit 3b34b1b

Please sign in to comment.