setup commands wip

This commit is contained in:
2025-03-27 13:28:48 +00:00
parent 2c881c9722
commit 2f5536342b
4 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?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);
}
}