spring-petclinic/src/main/resources/application-postgres.properties

7 lines
280 B
Properties
Raw Normal View History

2021-12-07 11:46:58 +00:00
database=postgres
spring.datasource.url=${POSTGRES_URL:jdbc:postgresql://localhost/petclinic}
spring.datasource.username=${POSTGRES_USER:petclinic}
spring.datasource.password=${POSTGRES_PASS:petclinic}
# SQL is written to be idempotent so this is safe
2022-05-19 14:07:16 +00:00
spring.sql.init.mode=always