postgres 18 and fix .env.example
Laravel CI-CD (Gitea) / Tests Unitaires (push) Successful in 14s Details
Laravel CI-CD (Gitea) / Build & Push Docker (push) Successful in 25s Details
Laravel CI-CD (Gitea) / Déploiement Simplifié (push) Successful in 1s Details

This commit is contained in:
Leon 2026-03-13 14:37:48 +01:00
parent 4acd59cd2a
commit 866a3de915
3 changed files with 7 additions and 6 deletions

View File

@ -21,11 +21,12 @@ LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug
DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_HOST=pgsql
DB_PORT=5432
DB_DATABASE=todo_api
DB_USERNAME=root
DB_PASSWORD=
DB_DATABASE=starter_api
DB_USERNAME=sail
DB_PASSWORD=password
FORWARD_DB_PORT=5431
SESSION_DRIVER=database
SESSION_LIFETIME=120

View File

@ -26,7 +26,7 @@ class AppServiceProvider extends ServiceProvider
if ($this->app->environment('production')) {
URL::forceScheme('https');
}
Scramble::extendOpenApi(function (OpenApi $openApi) {
Scramble::afterOpenApiGenerated(function (OpenApi $openApi) {
$openApi->secure(
SecurityScheme::http('bearer')
);

View File

@ -30,7 +30,7 @@ services:
- internal
pgsql:
image: postgres:15-alpine
image: postgres:18-alpine
container_name: starter-pgsql-1
restart: unless-stopped
environment: