refactor: Projektstruktur in app/ und backend/ aufgeteilt

This commit is contained in:
2026-03-24 15:06:44 +01:00
parent 5f5d5995c5
commit 2673ef658d
449 changed files with 28551 additions and 167 deletions

View File

@@ -1,6 +1,40 @@
docker buildx build --platform linux/amd64 -t appcreationgmbh/votianlt:0.8.0 --push .
# VotianLT Monorepo
docker buildx build --platform linux/amd64 -t registry.assecutor.de/votianlt:0.9.10 --push .
## Struktur
adsg
G8m0T3vz
- `backend/`: Spring Boot / Vaadin Backend
- `app/`: Flutter App
- `.vscode/`: gemeinsame Workspace-Launches für Backend und Flutter
## Backend
```bash
cd backend
./mvnw
```
Wichtige Befehle:
```bash
cd backend && ./mvnw test
cd backend && ./mvnw -Pproduction package
cd backend && ./mvnw spotless:apply
```
## Flutter App
```bash
cd app
flutter pub get
flutter run
```
## Release Image
Das Release-Script liegt im Repo-Root und baut/pusht das Backend-Image:
```bash
docker login registry.assecutor.org
./docker_push.sh
./docker_push.sh 0.9.13
```