Update help message in logs when setting up the app

This commit is contained in:
Hillel Coren 2024-07-12 10:19:49 +03:00
parent 61a78ca4b9
commit 10527f5dbc

View File

@ -152,7 +152,7 @@ class Handler extends ExceptionHandler
parent::report($exception); parent::report($exception);
if (Ninja::isSelfHost() && $exception instanceof MissingAppKeyException) { if (Ninja::isSelfHost() && $exception instanceof MissingAppKeyException) {
info('To setup the app run "cp .env.example .env" followed by "php artisan key:generate"'); info('To setup the app run: cp .env.example .env');
} }
} }