We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c32bc4f commit 2fc0720Copy full SHA for 2fc0720
src/Commands/InstallCommand.php
@@ -27,6 +27,8 @@ public function handle(AppSettings $settings)
27
28
Sleep::for(2)->seconds();
29
30
+ $this->call('migrate', ['--seed' => true, '--seeder' => DatabaseSeeder::class]);
31
+
32
if (confirm('Do you want to configure Cachet before installing?', true)) {
33
info('Configuring Cachet...');
34
$this->configureEnvironmentSettings();
@@ -37,8 +39,6 @@ public function handle(AppSettings $settings)
37
39
38
40
$this->call('filament:assets');
41
- $this->call('migrate', ['--seed' => true, '--seeder' => DatabaseSeeder::class]);
-
42
$settings->save();
43
44
info('Cachet is installed ⚡');
0 commit comments