Files
storytime/README.md
T
Vincent Bourdon 682d240893 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>
2026-06-19 17:09:01 +02:00

38 lines
601 B
Markdown

# 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.