Skip to content

Commit

Permalink
[INIT] dev.yml 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
Chan531 committed Jun 24, 2024
1 parent 0a6dac3 commit 88aa3ab
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
spring:
config:
import: application-secret.yml
activate:
on-profile: dev
datasource:
driver-class-name: org.postgresql.Driver
url: jdbc:postgresql://${DATABASE.ENDPOINT_URL.dev}:5432/postgres?currentSchema=${DATABASE.NAME.dev}
username: ${DATABASE.USERNAME.dev}
password: ${DATABASE.PASSWORD.dev}
jpa:
hibernate:
ddl-auto: none
properties:
hibernate:
format_sql: true
default_batch_fetch_size: 1000
auto_quote_keyword: true

0 comments on commit 88aa3ab

Please sign in to comment.