initial commit

Change-Id: I701a9ed7520fb530b44eff8e2aff4f9ccfecde27
This commit is contained in:
Scaffolder
2026-08-05 16:18:01 +00:00
commit 0f7ad60a5b
139 changed files with 28500 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
# database init, supports postgres too
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
spring.sql.init.mode=always