Skip to content

Commit

Permalink
Merge pull request #18 from VOM-Project/feature/deploy
Browse files Browse the repository at this point in the history
fix: dev yml파일 변수수정
  • Loading branch information
Ojimin authored Jun 1, 2024
2 parents 419e8c7 + 166a2c0 commit e8ad203
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ spring:
max-request-size: 20MB
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: ${url}
username: ${rds_username}
password: ${rds_password}
url: ${URL}
username: ${RDS_USERNAME}
password: ${RDS_PASSWORD}

jpa:
hibernate:
Expand All @@ -24,7 +24,7 @@ spring:
cloud:
aws:
s3:
bucket: ${bucket}
bucket: ${BUCKET}
region:
static: ap-northeast-2
stack:
Expand All @@ -34,11 +34,11 @@ cloud:

oauth2:
google:
client-id: ${client_id}
client-secret: ${client_secret}
redirect-uri: ${redirect_uri}
token-uri: ${token_uri}
resource-uri: ${resource_uri}
client-id: ${CLIENT_ID}
client-secret: ${CLIENT_SECRET}
redirect-uri: ${REDIRECT_URI}
token-uri: ${TOKEN_URI}
resource-uri: ${RESOURCE_URI}

#swagger
springdoc:
Expand All @@ -58,5 +58,5 @@ springdoc:
- /**

jwt :
secret: ${jwt_secret}
secret: ${JWT_SECRET}
expiration_time: 2592000 #30일

0 comments on commit e8ad203

Please sign in to comment.