19 lines
326 B
PHP
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);
|
|
}
|
|
}
|