Files
keystone/app/Console/Commands/Setup/Setup.php
2025-04-07 12:16:11 +01:00

19 lines
326 B
PHP

<?php
namespace App\Console\Commands\Setup;
use Illuminate\Console\Command;
class Setup extends Command
{
protected $signature = 'setup';
protected $description = 'Initialize the application.';
public function handle()
{
$this->call('migrate');
$this->call(GenerateSshKey::class);
}
}