Explorar o código

Update Installer.php

Shlee %!s(int64=3) %!d(string=hai) anos
pai
achega
df51e838bd
Modificáronse 1 ficheiros con 8 adicións e 0 borrados
  1. 8 0
      app/Console/Commands/Installer.php

+ 8 - 0
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);