docs: archive outdated reports and organize references

Archived several outdated reports (`Ping-Service_Impl_01-2026.md`, `Frontend_Integration_Status.md`, etc.) and added archival notes and references to updated documents. Introduced a centralized reference structure for tech stack documentation, consolidating files under `01_Architecture/Reference/Tech_Stack`. Added new resources (`Gradle_Kotlin_DSL_Primer`, `Kotlin_2-3-0_ReleaseNotes`) for improved project organization and clarity.
This commit is contained in:
2026-01-23 13:34:20 +01:00
parent e8124c047a
commit aba5b5c7a0
29 changed files with 816 additions and 3598 deletions
@@ -18,12 +18,15 @@ spring:
jpa:
database-platform: org.hibernate.dialect.PostgreSQLDialect
hibernate:
ddl-auto: validate # Flyway kümmert sich um Schema!
# WICHTIG: Flyway kümmert sich um das Schema. Hibernate darf nur validieren.
ddl-auto: validate
open-in-view: false
flyway:
enabled: true
# Erlaubt Migration auch wenn DB nicht leer ist (wichtig für Dev)
baseline-on-migrate: true
# Sucht standardmäßig in classpath:db/migration
security:
oauth2:
@@ -0,0 +1,6 @@
-- Initiale Testdaten für den Ping-Service (damit Sync direkt was liefert)
-- IDs sind UUIDv7 kompatibel generiert
INSERT INTO ping (id, message, created_at) VALUES
('01948852-6d00-7000-8000-000000000001', 'System Start Ping', '2026-01-20 08:00:00+00'),
('01948852-6d00-7000-8000-000000000002', 'Database Migration Successful', '2026-01-20 08:05:00+00');