refactor: Migrate from monolithic to modular architecture

- Restructure project into domain-specific modules (core, masterdata, members, horses, events, infrastructure)
- Create shared client components in common-ui module
- Implement CI/CD workflows with GitHub Actions
- Consolidate documentation in docs directory
- Remove deprecated modules and documentation files
- Add cleanup and migration scripts for transition
- Update README with new project structure and setup instructions
This commit is contained in:
stefan
2025-07-22 18:44:18 +02:00
parent 8229e8e571
commit a256622f37
314 changed files with 5930 additions and 19817 deletions
+30
View File
@@ -0,0 +1,30 @@
plugins {
kotlin("jvm")
alias(libs.plugins.kotlin.serialization)
}
dependencies {
api(projects.platform.platformDependencies)
// UUID handling
api("com.benasher44:uuid:0.8.2")
// Serialization
api("org.jetbrains.kotlinx:kotlinx-serialization-json")
api("org.jetbrains.kotlinx:kotlinx-datetime")
// Database
api("org.jetbrains.exposed:exposed-core")
api("org.jetbrains.exposed:exposed-dao")
api("org.jetbrains.exposed:exposed-jdbc")
api("org.jetbrains.exposed:exposed-kotlin-datetime")
api("com.zaxxer:HikariCP")
// BigDecimal
api("com.ionspin.kotlin:bignum:0.3.8")
// Service Discovery
api("com.orbitz.consul:consul-client:1.5.3")
testImplementation(projects.platform.platformTesting)
}