mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
chore(core): add coolify config file
This commit is contained in:
parent
9e7b1d9a4e
commit
107aef141a
1 changed files with 27 additions and 0 deletions
27
config/coolify.php
Normal file
27
config/coolify.php
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<?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', false),
|
||||
'cdn_url' => env('CDN_URL', 'https://cdn.coollabs.io/v5.x'),
|
||||
|
||||
'migrations' => [
|
||||
'enabled' => env('IS_MIGRATIONS_ENABLED', true),
|
||||
],
|
||||
|
||||
'seeders' => [
|
||||
'enabled' => env('IS_SEEDERS_ENABLED', true),
|
||||
],
|
||||
|
||||
'scheduler' => [
|
||||
'enabled' => env('IS_SCHEDULER_ENABLED', true),
|
||||
],
|
||||
|
||||
'horizon' => [
|
||||
'enabled' => env('IS_HORIZON_ENABLED', true),
|
||||
],
|
||||
];
|
||||
Loading…
Reference in a new issue