From 748c275969e887bf8ac6a9c6760c3be335f03454 Mon Sep 17 00:00:00 2001 From: Pig Fang Date: Fri, 26 Apr 2019 12:33:43 +0800 Subject: [PATCH] Add missing artisan calls in CLI installation --- app/Console/Commands/ExecuteInstallation.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Console/Commands/ExecuteInstallation.php b/app/Console/Commands/ExecuteInstallation.php index 89494b8b..caf3fed8 100644 --- a/app/Console/Commands/ExecuteInstallation.php +++ b/app/Console/Commands/ExecuteInstallation.php @@ -22,6 +22,8 @@ class ExecuteInstallation extends Command $this->call('key:random'); $this->call('salt:random'); $this->call('migrate', ['--force' => true]); + $this->call('jwt:secret', ['--no-interaction' => true]); + $this->call('passport:keys', ['--no-interaction' => true]); $siteUrl = url('/'); if (ends_with($siteUrl, '/index.php')) {