From df51e838bd0963c386620f73fd72af09588c4f9f Mon Sep 17 00:00:00 2001 From: Shlee Date: Wed, 15 Jun 2022 19:15:12 +0930 Subject: [PATCH] Update Installer.php --- app/Console/Commands/Installer.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/Console/Commands/Installer.php b/app/Console/Commands/Installer.php index 5897c5b21..da8a063b6 100644 --- a/app/Console/Commands/Installer.php +++ b/app/Console/Commands/Installer.php @@ -371,9 +371,17 @@ class Installer extends Command if($confirm === 'Yes') { sleep(3); + $this->line(''); + $this->info('Migrating DB:'); $this->call('migrate', ['--force' => true]); + $this->line(''); + $this->info('Importing Cities:'); $this->callSilently('import:cities'); + $this->line(''); + $this->info('Creating Federation Instance Actor:'); $this->callSilently('instance:actor'); + $this->line(''); + $this->info('Creating Password Keys for API:'); $this->callSilently('passport:keys, ['--force' => true]); $confirm = $this->choice('Do you want to create an admin account?', ['Yes', 'No'], 0);