Fix : backend intégré en monorepo (suppression git imbriqué)

symfony new crée son propre .git — supprimé pour intégrer
backend/ comme dossier ordinaire dans le monorepo.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Gwadaking
2026-04-01 02:23:26 -04:00
parent f685c96ed6
commit 34e9675350
20 changed files with 3654 additions and 1 deletions

0
backend/src/Controller/.gitignore vendored Normal file
View File

11
backend/src/Kernel.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
namespace App;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
class Kernel extends BaseKernel
{
use MicroKernelTrait;
}