This commit is contained in:
Andras Bacsai
2023-06-07 09:36:25 +02:00
parent 5d864f5888
commit 2c3682cc26
2 changed files with 13 additions and 16 deletions

View File

@@ -15,6 +15,13 @@ class InstanceSettingsSeeder extends Seeder
InstanceSettings::create([
'id' => 0,
'is_registration_enabled' => true,
'extra_attributes' => [
'smtp_recipients' => 'test@example.com,test2@example.com',
'smtp_host' => 'coolify-mail',
'smtp_port' => 1025,
'smtp_from_address' => 'hi@localhost.com',
'smtp_from_name' => 'Coolify',
]
]);
}
}