first commit

This commit is contained in:
2026-03-24 15:03:35 +01:00
commit cdba16ebe8
162 changed files with 194406 additions and 0 deletions

45
README.md Normal file
View File

@@ -0,0 +1,45 @@
# HHA Repository
Dieses Repository ist jetzt als Monorepo fuer zwei getrennte Anwendungen aufgebaut:
- `app/` enthaelt die Flutter-App
- `backend/` enthaelt das Spring Boot + Vaadin Backoffice
## Struktur
```text
HHA/
|- app/
| |- lib/
| |- android/
| |- pubspec.yaml
| `- README.md
`- backend/
|- src/main/java/
|- src/main/resources/
|- pom.xml
`- mvnw
```
## Start
Flutter-App:
```bash
cd app
flutter pub get
flutter run
```
Backend:
```bash
cd backend
./mvnw spring-boot:run
```
## Hinweise
- Flutter-spezifische Quellen, Build-Dateien und Artefakte liegen unter `app/`.
- Das Backend bleibt als eigenstaendiges Maven-Modul unter `backend/`.
- Weitere Details zur mobilen App stehen in `app/README.md`.