Configure l'environnement de développement complet avec Docker Compose, structure DDD 4 Bounded Contexts, et pipeline CI/CD GitHub Actions. Corrections compatibilité CI: - Symfony 8 nécessite monolog-bundle ^4.0 (la v3.x ne supporte que jusqu'à Symfony 7) - ESLint v9 nécessite flat config (eslint.config.js) - le format .eslintrc.cjs est obsolète
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
# =============================================================================
|
|
# Dependencies
|
|
# =============================================================================
|
|
node_modules/
|
|
.pnpm-store/
|
|
|
|
# =============================================================================
|
|
# Build output
|
|
# =============================================================================
|
|
/.svelte-kit/
|
|
/build/
|
|
dist/
|
|
|
|
# =============================================================================
|
|
# Environment files
|
|
# =============================================================================
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# =============================================================================
|
|
# Testing
|
|
# =============================================================================
|
|
/coverage/
|
|
/playwright-report/
|
|
/test-results/
|
|
|
|
# =============================================================================
|
|
# PWA
|
|
# =============================================================================
|
|
dev-dist/
|
|
|
|
# =============================================================================
|
|
# Misc
|
|
# =============================================================================
|
|
*.local
|
|
*.tsbuildinfo
|