mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
fix: run init command after production seeder
This commit is contained in:
parent
d8b97e06cf
commit
5cb572b6a5
2 changed files with 2 additions and 0 deletions
|
|
@ -14,6 +14,7 @@ use App\Models\StandaloneDocker;
|
|||
use App\Models\Team;
|
||||
use App\Models\User;
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Process;
|
||||
use Illuminate\Support\Facades\Storage;
|
||||
|
|
@ -144,5 +145,6 @@ class ProductionSeeder extends Seeder
|
|||
} catch (\Throwable $e) {
|
||||
echo "Error: {$e->getMessage()}\n";
|
||||
}
|
||||
Artisan::call('app:init');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue