8 lines
189 B
PHP
8 lines
189 B
PHP
<?php
|
|
|
|
use Artisan;
|
|
|
|
Artisan::call('jwt:secret', ['--no-interaction' => true]);
|
|
Artisan::call('migrate', ['--force' => true]);
|
|
Artisan::call('passport:keys', ['--no-interaction' => true]);
|