Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,23 @@ APP_TIMEZONE=UTC
APP_TIMEZONE_DISPLAY="Europe/London"
APP_URL=http://laravel-inertia-template.test

LOG_CHANNEL=stack
LOG_STACK=single,nightwatch

DB_CONNECTION=sqlite

SESSION_DRIVER=database

CACHE_STORE=database

FILESYSTEM_DISK=local
QUEUE_CONNECTION=sync

MAIL_MAILER=log
MAIL_FROM_ADDRESS="admin@laravel-inertia-template.test"
MAIL_FROM_NAME="${APP_NAME}"

SENTRY_LARAVEL_DSN=""
SENTRY_TRACES_SAMPLE_RATE=0.1

VITE_APP_NAME="${APP_NAME}"
VITE_APP_ENV="${APP_ENV}"
VITE_SENTRY_DSN_PUBLIC=""

NIGHTWATCH_TOKEN=

HEALTH_CHECK_TO_ADDRESS=
3 changes: 1 addition & 2 deletions bootstrap/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
use Sentry\Laravel\Integration;

return Application::configure(basePath: dirname(__DIR__))
->withRouting(
Expand All @@ -25,5 +24,5 @@
]);
})
->withExceptions(function (Exceptions $exceptions) {
Integration::handles($exceptions);
//
})->create();
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
"filament/filament": "^3.2",
"inertiajs/inertia-laravel": "^2.0",
"laravel/framework": "^12.0",
"laravel/nightwatch": "^1.19",
"laravel/pulse": "^1.2",
"laravel/sanctum": "^4.0",
"laravel/tinker": "^2.9",
"laravel/wayfinder": "^0.1.5",
"sentry/sentry-laravel": "^4.7",
"spatie/laravel-health": "^1.31",
"spatie/laravel-permission": "^6.9",
"spatie/security-advisories-health-check": "^1.2",
Expand Down
Loading