diff options
| author | grothedev <grothedev@gmail.com> | 2025-12-28 22:16:11 -0500 |
|---|---|---|
| committer | grothedev <grothedev@gmail.com> | 2025-12-28 22:16:11 -0500 |
| commit | 57445d4ccbfe1cb190437c8f6b609fc83723b015 (patch) | |
| tree | 2e4f50e834faceb068502d231ad2c9cc30067f9b /bootstrap | |
had claude code start making this project just to see what happens
Diffstat (limited to 'bootstrap')
| -rw-r--r-- | bootstrap/app.php | 18 | ||||
| -rw-r--r-- | bootstrap/cache/.gitignore | 2 | ||||
| -rw-r--r-- | bootstrap/providers.php | 5 |
3 files changed, 25 insertions, 0 deletions
diff --git a/bootstrap/app.php b/bootstrap/app.php new file mode 100644 index 0000000..c183276 --- /dev/null +++ b/bootstrap/app.php @@ -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): void { + // + }) + ->withExceptions(function (Exceptions $exceptions): void { + // + })->create(); diff --git a/bootstrap/cache/.gitignore b/bootstrap/cache/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/bootstrap/providers.php b/bootstrap/providers.php new file mode 100644 index 0000000..38b258d --- /dev/null +++ b/bootstrap/providers.php @@ -0,0 +1,5 @@ +<?php + +return [ + App\Providers\AppServiceProvider::class, +]; |
