Fix database seeding, add security and complete missing endpoints

This commit is contained in:
2026-03-08 09:11:26 -06:00
parent 62ad3881a2
commit 3a93fea34f
18 changed files with 620 additions and 1 deletions

View File

@@ -8,6 +8,13 @@ spring:
password: ${SPRING_DATASOURCE_PASSWORD:petshop}
driver-class-name: com.mysql.cj.jdbc.Driver
sql:
init:
mode: always
schema-locations: classpath:schema.sql
data-locations: classpath:data.sql
continue-on-error: false
jpa:
hibernate:
ddl-auto: validate