feat(job-completion): add message and photo upload to job completion

This commit is contained in:
2026-01-13 11:41:21 +01:00
parent e104a9d377
commit 97d8f12fc0
14 changed files with 265 additions and 25 deletions

View File

@@ -76,21 +76,25 @@ Mit **Docker CLI**:
# Image bauen
docker build -t cat-sitting-planner .
# Container starten
# Container starten
docker run -d \
--name cat-sitting-planner \
-p 3000:3000 \
-v /pfad/zum/host/data:/app/data \
-v /pfad/zum/host/uploads:/app/public/uploads \
--restart always \
cat-sitting-planner
```
### 2. Datenpersistenz (Wichtig)
Die Daten liegen in `/app/data/dev.db`.
Mappe diesen Ordner unbedingt auf ein lokales Volume:
Bilder werden in `/app/public/uploads` gespeichert.
Mappe diese Ordner unbedingt auf lokale Volumes:
```yaml
volumes:
- /pfad/zum/host/data:/app/data
- /pfad/zum/host/uploads:/app/public/uploads
```
---