mirror of
https://github.com/s-frick/effigenix.git
synced 2026-03-28 13:49:36 +01:00
refactor: restructure repository with separate backend and frontend directories
- Move Java backend to backend/ directory - Create frontend/ directory for TypeScript TUI and future WebUI - Update .gitignore for Node.js and worktrees - Update README.md with new repository structure - Copy documentation to backend/
This commit is contained in:
parent
ec9114aa0a
commit
c2c48a03e8
141 changed files with 734 additions and 9 deletions
25
backend/src/test/resources/application-test.yml
Normal file
25
backend/src/test/resources/application-test.yml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
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: true
|
||||
|
||||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue