Showing 3 Result(s)

Connect Sequel Ace to MariaDB with Docker Desktop

Let’s start with installing docker desktop for mac. After successfully installing Docker Desktop, we download the image named “mariadb”. So let’s start the image by clicking on the play button (see image below) thus creating our first container on docker desktop. Before launching the container, let’s set a couple of parameters (image below) that will …

console command list

Always keep on hand when developing in the dev environment

to view the current configuration of a particular {bundle} : $ php bin/console debug:config {bundle-name} to view the potential configurations of a particular {bundle} : $ php bin/console config:dump {bundle-name} the following list is used to regenerate the entire database including migrations and data fakes : $ symfony console doctrine:database:drop –force $ symfony console doctrine:database:create …