coolify/config/coolify.php

28 lines
600 B
PHP
Raw Normal View History

2026-02-23 19:24:26 +00:00
<?php
declare(strict_types=1);
return [
'version' => '5.0.0-alpha.1',
'helper_version' => '2.0.0',
'self_hosted' => env('SELF_HOSTED', true),
'autoupdate' => env('AUTOUPDATE_ENABLED', false),
2026-02-23 19:24:26 +00:00
'cdn_url' => env('CDN_URL', 'https://cdn.coollabs.io/v5.x'),
'migrations' => [
'enabled' => env('MIGRATIONS_ENABLED', true),
2026-02-23 19:24:26 +00:00
],
'seeders' => [
'enabled' => env('SEEDERS_ENABLED', true),
2026-02-23 19:24:26 +00:00
],
'scheduler' => [
'enabled' => env('SCHEDULER_ENABLED', true),
2026-02-23 19:24:26 +00:00
],
'horizon' => [
'enabled' => env('HORIZON_ENABLED', true),
2026-02-23 19:24:26 +00:00
],
];