feat: Setup projet Classeo avec infrastructure Docker et architecture DDD

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
This commit is contained in:
2026-01-30 09:55:58 +01:00
parent ddefa927c7
commit 6da5996340
125 changed files with 10032 additions and 0 deletions

21
frontend/e2e/home.test.ts Normal file
View File

@@ -0,0 +1,21 @@
import { expect, test } from '@playwright/test';
test('home page has correct title and content', async ({ page }) => {
await page.goto('/');
await expect(page).toHaveTitle('Classeo');
await expect(page.getByRole('heading', { name: 'Bienvenue sur Classeo' })).toBeVisible();
await expect(page.getByText('Application de gestion scolaire')).toBeVisible();
});
test('counter increments when button is clicked', async ({ page }) => {
await page.goto('/');
await expect(page.getByText('Compteur: 0')).toBeVisible();
await page.getByRole('button', { name: 'Incrementer' }).click();
await expect(page.getByText('Compteur: 1')).toBeVisible();
await page.getByRole('button', { name: 'Incrementer' }).click();
await expect(page.getByText('Compteur: 2')).toBeVisible();
});