- Intial commit

This commit is contained in:
2025-01-28 16:18:18 +01:00
commit 9f450fc72d
44 changed files with 15972 additions and 0 deletions

19
CMD.md Normal file
View File

@ -0,0 +1,19 @@
### Mettre à jour la bdd :
```bash
sudo docker exec -it cloudsprint-php-1 php bin/console doctrine:schema:update --force
```
### Créer une entity avec interaction :
```bash
sudo docker exec -it cloudsprint-php-1 php bin/console make:entity User
```
### Créer un controller :
```bash
sudo docker exec -it cloudsprint-php-1 php bin/console make:controller name
```
### Vider le cache :
```bash
sudo docker exec -it cloudsprint-php-1 php bin/console cache:clear
```