Add LLM digest setup and share timestamp context

This commit is contained in:
Rijad Zuzo
2026-05-19 19:17:35 +02:00
parent 9d2da0c600
commit 5d80af375e
42 changed files with 2878 additions and 39 deletions
+11
View File
@@ -52,6 +52,9 @@ Notable build-time flags live in `lib/core/config/app_config.dart`:
- `BACKGROUND_SYNC_INTERVAL_SECONDS`
- `ENABLE_LOCAL_NOTIFICATIONS`
- `ENABLE_WHATSAPP_SHARE_INTAKE`
- `SENTRY_DSN` defaults to the Bugsink project DSN
- `SENTRY_ENVIRONMENT`
- `SENTRY_RELEASE`
## Run
@@ -75,6 +78,14 @@ flutter run \
--dart-define=BACKEND_BASE_URL=https://api.example.com
```
Build a release with explicit Bugsink/Sentry metadata:
```bash
flutter build apk --release \
--dart-define=SENTRY_ENVIRONMENT=production \
--dart-define=SENTRY_RELEASE=relationship_saver@1.0.0+1
```
Run tests:
```bash