From bf9c9514078e7374da5c49a9123bacc65035f7a3 Mon Sep 17 00:00:00 2001 From: Flycro Date: Thu, 12 Mar 2026 02:42:54 +0100 Subject: [PATCH] fix: correct postgres connection name and port in .env.example --- .env.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index d7def97..6867eee 100644 --- a/.env.example +++ b/.env.example @@ -20,9 +20,9 @@ LOG_STACK=single LOG_DEPRECATIONS_CHANNEL=null LOG_LEVEL=debug -DB_CONNECTION=pqsql +DB_CONNECTION=pgsql DB_HOST=127.0.0.1 -DB_PORT=3306 +DB_PORT=5432 DB_DATABASE=laravel DB_USERNAME=sail DB_PASSWORD=password