documentaiton

This commit is contained in:
Nick Yeoman 2022-12-18 01:37:39 -08:00
parent 8c045c2fad
commit d162e456a6
2 changed files with 4 additions and 2 deletions

View File

@ -16,6 +16,8 @@ php bin/console security:hash-password
composer dump-autoload
fixes a lot of problems: ```symfony console cache:clear```
To view the namespaces symfony creates for twig:
php bin/console debug:twig
## Installed Recipes

View File

@ -21,7 +21,7 @@ The system is smart enough not to duplicate work.
To create a migration from the entity, run:
```bash
php bin/console make:migration
sudo docker-compose run php bin/console make:migration
```
A file will be created in the migrations folder.
@ -29,7 +29,7 @@ A file will be created in the migrations folder.
## Part 3 - Create the table (run migration)
```bash
php bin/console doctrine:migrations:migrate
sudo docker-compose run php php bin/console doctrine:migrations:migrate
```
## References