mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 04:23:34 +00:00
Dispatch edit-domain-saved so Alpine closes the domain edit modal, wire Save to updateDomain, and force white active log toolbar text in dark mode. Seed railpack examples on the local Docker destination only and remove Lima servers, environments, and V5DevLimaSeeder.
42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
public function run(): void
|
|
{
|
|
$this->call([
|
|
InstanceSettingsSeeder::class,
|
|
UserSeeder::class,
|
|
TeamSeeder::class,
|
|
PrivateKeySeeder::class,
|
|
PopulateSshKeysDirectorySeeder::class,
|
|
ServerSeeder::class,
|
|
ServerSettingSeeder::class,
|
|
ProjectSeeder::class,
|
|
StandaloneDockerSeeder::class,
|
|
GithubAppSeeder::class,
|
|
GitlabAppSeeder::class,
|
|
ApplicationSeeder::class,
|
|
ApplicationSettingsSeeder::class,
|
|
LocalPersistentVolumeSeeder::class,
|
|
S3StorageSeeder::class,
|
|
StandalonePostgresqlSeeder::class,
|
|
OauthSettingSeeder::class,
|
|
DisableTwoStepConfirmationSeeder::class,
|
|
SentinelSeeder::class,
|
|
CaSslCertSeeder::class,
|
|
PersonalAccessTokenSeeder::class,
|
|
]);
|
|
|
|
if (in_array(config('app.env'), ['local', 'development', 'dev'], true)) {
|
|
$this->call([
|
|
DevelopmentRailpackExamplesSeeder::class,
|
|
]);
|
|
}
|
|
}
|
|
}
|