dispatch jobs after demo data was generated

This commit is contained in:
Peter Papp
2021-03-16 14:33:01 +01:00
parent f0e9c80572
commit f142919cd1

View File

@@ -79,6 +79,11 @@ class SetupDevEnvironment extends Command
$this->info('Clearing application cache...');
$this->clear_cache();
$this->info('Dispatching jobs...');
$this->call('queue:work', [
'--stop-when-empty' => true,
]);
$this->info('Everything is done, congratulations! 🥳🥳🥳');
}