coolify/config/coolify.php

29 lines
675 B
PHP
Raw Permalink Normal View History

2026-02-23 19:24:26 +00:00
<?php
declare(strict_types=1);
return [
'version' => env('COOLIFY_VERSION', '5.0.0-alpha.1'),
'channel' => env('COOLIFY_CHANNEL', 'stable'),
2026-02-23 19:24:26 +00:00
'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
],
];