feat(j0.1): squelette projet Flutter + arborescence clean archi

- flutter create --platforms=android --org biz.siteop
- arborescence lib/core/{error,theme,router,di} et lib/features/{locking,playback,podcasts,parental,limits}/{domain,application,data,presentation}
- pubspec.yaml : flutter_riverpod ^2.6.1 (YAGNI — autres paquets aux jalons suivants)
- lib/main.dart : ProviderScope + StorytimeApp (MaterialApp + écran placeholder)
- test/app_boots_test.dart : TDD Red→Green vérifié (flutter test vert, flutter analyze 0 issue)
- README.md : prérequis Flutter 3.41.6 / Dart 3.11.4

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Vincent Bourdon
2026-06-19 17:09:01 +02:00
parent 16fd4c8c36
commit 682d240893
53 changed files with 686 additions and 2 deletions
+37
View File
@@ -0,0 +1,37 @@
# Storytime
Lecteur d'histoires audio cadenassé pour le coucher, sur tablette Android.
## Prérequis de reproduction
| Outil | Version |
|---------|---------------|
| Flutter | 3.41.6 stable |
| Dart | 3.11.4 |
```
flutter --version
# Flutter 3.41.6 • channel stable
# Dart 3.11.4
```
## Plateforme cible
Android uniquement.
## Lancer les tests
```bash
flutter test
```
## Analyser le code
```bash
flutter analyze
dart format .
```
## Architecture
Clean Architecture feature-first. Voir [CLAUDE.md](CLAUDE.md) pour les principes d'ingénierie et l'arborescence cible.