update doc for sf4 : bin/console

This commit is contained in:
nobohan 2021-01-14 16:48:44 +01:00
parent d5972d5a9d
commit a1150dd0cf

View File

@ -84,7 +84,7 @@ Chill will be available at ``http://localhost:8001.`` Currently, there isn't any
.. code-block:: bash .. code-block:: bash
docker-compose exec --user $(id -u) php app/console doctrine:fixtures:load docker-compose exec --user $(id -u) php bin/console doctrine:fixtures:load
There are several users available: There are several users available:
@ -113,9 +113,9 @@ How to execute the console ?
.. code-block:: bash .. code-block:: bash
# if a container is running # if a container is running
docker-compose exec --user $(id -u) php app/console docker-compose exec --user $(id -u) php bin/console
# if not # if not
docker-compose run --user $(id -u) php app/console docker-compose run --user $(id -u) php bin/console
How to create the database schema (= run migrations) ? How to create the database schema (= run migrations) ?
====================================================== ======================================================
@ -123,9 +123,9 @@ How to create the database schema (= run migrations) ?
.. code-block:: bash .. code-block:: bash
# if a container is running # if a container is running
docker-compose exec --user $(id -u) php app/console doctrine:migrations:migrate docker-compose exec --user $(id -u) php bin/console doctrine:migrations:migrate
# if not # if not
docker-compose run --user $(id -u) php app/console doctrine:migrations:migrate docker-compose run --user $(id -u) php bin/console doctrine:migrations:migrate
How to read the email sent by the program ? How to read the email sent by the program ?
@ -141,9 +141,9 @@ How to load fixtures ? (development mode only)
.. code-block:: bash .. code-block:: bash
# if a container is running # if a container is running
docker-compose exec --user $(id -u) php app/console doctrine:fixtures:load docker-compose exec --user $(id -u) php bin/console doctrine:fixtures:load
# if not # if not
docker-compose run --user $(id -u) php app/console doctrine:fixtures:load docker-compose run --user $(id -u) php bin/console doctrine:fixtures:load
How to open a terminal in the project How to open a terminal in the project
===================================== =====================================