setup commands wip
This commit is contained in:
17
app/Console/Commands/Setup/Setup.php
Normal file
17
app/Console/Commands/Setup/Setup.php
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user