Blog

I like to write about people, the places they live and the things with which they choose to surround themselves. Here are some of my favorite pieces that made it into Article.

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 …

GUIDA COMPLETA: Symfony 7.x + API Platform + Next.js con Apache

1️⃣ Installazione in locale (localhost) 2️⃣ Deploy su un server remoto (Ubuntu + Apache)             🖥️ 1️⃣ Installazione in LOCALE 📌 Struttura del progetto /my-project │── /backend # Symfony 7.x + API Platform (backend) │ │── /bin │ │── /config │ │── /migrations │ │── /public │ │── /src │ …

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 …