This commit is contained in:
Tim Zöller 2025-11-29 09:56:55 +01:00
parent c1729a629d
commit ac53f04e0a
27 changed files with 3019 additions and 88 deletions

View file

@ -7,13 +7,18 @@ spring:
jpa:
hibernate:
ddl-auto: update # Auto-update schema in dev mode
ddl-auto: validate # Use Flyway for schema management, even in dev
show-sql: true # Show SQL queries in console
properties:
hibernate:
format_sql: true # Format SQL for readability
use_sql_comments: true # Add comments to SQL
flyway:
enabled: true # Use Flyway for migrations
baseline-on-migrate: true
locations: classpath:db/migration
# Development-specific FitPub configuration
fitpub:
domain: ${FITPUB_DOMAIN:localhost:8080}