feat(server): scaffolding du serveur Dart headless hexagonal (ticket #47)

Ajoute le nouveau paquet server/ (architecture hexagonale : api,
domain, application, infrastructure/postgres, infrastructure/security,
migrations, scripts) avec un premier endpoint GET /health. dart pub
get OK, dart analyze clean, dart test 1/1 vert, serveur démarré
manuellement et validé (GET /health -> 200 {"status":"ok"}).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-07-19 00:04:34 +02:00
parent 8d9d4f0cd3
commit cc1388cc9e
13 changed files with 552 additions and 0 deletions

14
server/pubspec.yaml Normal file
View File

@ -0,0 +1,14 @@
name: gametime_server
description: Headless Dart server for GameTime sync and sharing.
publish_to: 'none'
environment:
sdk: ^3.10.0
dependencies:
shelf: ^1.4.2
shelf_router: ^1.1.4
dev_dependencies:
lints: ^6.0.0
test: ^1.25.14