1
0
Fork 0
mirror of https://github.com/s-frick/effigenix.git synced 2026-03-28 10:09:35 +01:00
effigenix/backend/src/test/resources/application-test.yml
Sebastian Frick 5219c93dd1 feat(inventory): Bestandsposition anlegen (#4)
Stock-Aggregate mit MinimumLevel, MinimumShelfLife und StockDraft.
Quantity/UnitOfMeasure nach shared.common verschoben für BC-übergreifende
Nutzung. REST-Endpoint POST /api/inventory/stocks mit Duplikat-Prüfung,
Validierung und Liquibase-Migration.
2026-02-19 21:37:47 +01:00

25 lines
542 B
YAML

spring:
datasource:
url: jdbc:h2:mem:testdb
driver-class-name: org.h2.Driver
username: sa
password:
jpa:
database-platform: org.hibernate.dialect.H2Dialect
hibernate:
ddl-auto: create-drop
show-sql: false
liquibase:
enabled: false # Use Hibernate for test schema
jwt:
secret: TestSecretKeyForUnitTestsMin256BitsLongForHS256AlgorithmSecurity
expiration: 3600000 # 1 hour for tests
refresh-expiration: 7200000 # 2 hours for tests
logging:
level:
root: INFO
de.effigenix: DEBUG