for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thinktomorrow\Chief\App\Console;
class CreateDeveloper extends BaseCommand
{
protected $signature = 'chief:developer';
protected $description = 'Create a new chief developer user';
public function handle(): void
$this->call('chief:admin', ['--dev' => true]);
}