Skip to content

Commit e64cc71

Browse files
authored
Replace Sentry with Nightwatch (#109)
* Remove Sentry JS * Remove Sentry PHP * Install Nightwatch
1 parent baeeaab commit e64cc71

File tree

7 files changed

+160
-489
lines changed

7 files changed

+160
-489
lines changed

.env.example

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,23 @@ APP_TIMEZONE=UTC
66
APP_TIMEZONE_DISPLAY="Europe/London"
77
APP_URL=http://laravel-inertia-template.test
88

9+
LOG_CHANNEL=stack
10+
LOG_STACK=single,nightwatch
11+
912
DB_CONNECTION=sqlite
1013

1114
SESSION_DRIVER=database
12-
1315
CACHE_STORE=database
14-
1516
FILESYSTEM_DISK=local
1617
QUEUE_CONNECTION=sync
1718

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

22-
SENTRY_LARAVEL_DSN=""
23-
SENTRY_TRACES_SAMPLE_RATE=0.1
24-
2523
VITE_APP_NAME="${APP_NAME}"
2624
VITE_APP_ENV="${APP_ENV}"
27-
VITE_SENTRY_DSN_PUBLIC=""
25+
26+
NIGHTWATCH_TOKEN=
2827

2928
HEALTH_CHECK_TO_ADDRESS=

bootstrap/app.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
use Illuminate\Foundation\Application;
44
use Illuminate\Foundation\Configuration\Exceptions;
55
use Illuminate\Foundation\Configuration\Middleware;
6-
use Sentry\Laravel\Integration;
76

87
return Application::configure(basePath: dirname(__DIR__))
98
->withRouting(
@@ -25,5 +24,5 @@
2524
]);
2625
})
2726
->withExceptions(function (Exceptions $exceptions) {
28-
Integration::handles($exceptions);
27+
//
2928
})->create();

bun.lockb

-2.85 KB
Binary file not shown.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
"filament/filament": "^3.2",
99
"inertiajs/inertia-laravel": "^2.0",
1010
"laravel/framework": "^12.0",
11+
"laravel/nightwatch": "^1.19",
1112
"laravel/pulse": "^1.2",
1213
"laravel/sanctum": "^4.0",
1314
"laravel/tinker": "^2.9",
1415
"laravel/wayfinder": "^0.1.5",
15-
"sentry/sentry-laravel": "^4.7",
1616
"spatie/laravel-health": "^1.31",
1717
"spatie/laravel-permission": "^6.9",
1818
"spatie/security-advisories-health-check": "^1.2",

0 commit comments

Comments
 (0)