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
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,7 @@ SCOUT_DRIVER=meilisearch
SCOUT_QUEUE=true
MEILISEARCH_HOST=http://meilisearch:7700
MEILISEARCH_NO_ANALYTICS=false

SENTRY_LARAVEL_DSN=
SENTRY_TRACES_SAMPLE_RATE=1.0
SENTRY_PROFILES_SAMPLE_RATE=1.0
3 changes: 2 additions & 1 deletion bootstrap/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
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 @@ -15,5 +16,5 @@
//
})
->withExceptions(function (Exceptions $exceptions) {
//
Integration::handles($exceptions);
})->create();
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"http-interop/http-factory-guzzle": "^1.2",
"laravel/framework": "^12.1.1",
"laravel/scout": "^10.13.1",
"meilisearch/meilisearch-php": "^1.13"
"meilisearch/meilisearch-php": "^1.13",
"sentry/sentry-laravel": "^4.13"
},
"require-dev": {
"fakerphp/faker": "^1.24.1",
Expand Down
Loading
Loading