Skip to content

Commit

Permalink
fix: dev -> prod 로 변경 (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks authored Oct 30, 2024
1 parent 7cb3f6c commit 771b80b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions layer-batch/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ spring:
config:
import: application-secret.properties
datasource:
url: ${DEV_DB_URL}
username: ${DEV_DB_NAME}
password: ${DEV_DB_PASSWORD}
url: ${PROD_DB_URL}
username: ${PROD_DB_NAME}
password: ${PROD_DB_PASSWORD}
driver-class-name: com.mysql.cj.jdbc.Driver
jpa:
hibernate:
ddl-auto: update
ddl-auto: validate
properties:
hibernate:
format_sql: true
Expand Down

0 comments on commit 771b80b

Please sign in to comment.