Add: server timezone seeder

This commit is contained in:
ayntk-ai
2024-08-16 17:09:53 +02:00
parent 00f20c708f
commit 3e3b92638b
3 changed files with 44 additions and 1 deletions

View File

@@ -79,7 +79,8 @@ class ProductionSeeder extends Seeder
],
[
'name' => 'localhost\'s key',
'description' => 'The private key for the Coolify host machine (localhost).', 'private_key' => $coolify_key,
'description' => 'The private key for the Coolify host machine (localhost).',
'private_key' => $coolify_key,
]
);
} else {
@@ -180,5 +181,8 @@ uZx9iFkCELtxrh31QJ68AAAAEXNhaWxANzZmZjY2ZDJlMmRkAQIDBA==
$oauth_settings_seeder = new OauthSettingSeeder;
$oauth_settings_seeder->run();
$server_timezone_seeder = new ServerTimezoneSeeder;
$server_timezone_seeder->run();
}
}