Expand .gitignore for Laravel, update README with one-command setup, simplify env configs

This commit is contained in:
2026-03-09 03:48:40 +02:00
parent 17dbdad28b
commit c5260e652b
144 changed files with 16041 additions and 1709 deletions

18
src/bootstrap/app.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
return Application::configure(basePath: dirname(__DIR__))
->withRouting(
web: __DIR__.'/../routes/web.php',
commands: __DIR__.'/../routes/console.php',
health: '/up',
)
->withMiddleware(function (Middleware $middleware) {
//
})
->withExceptions(function (Exceptions $exceptions) {
//
})->create();