chore(release): add release options to coolify config

- get version from env by default
- add release channel
This commit is contained in:
peaklabs-dev 2026-03-02 23:31:12 +01:00
parent e2ccdc5b04
commit 3287a3c7b0
No known key found for this signature in database

View file

@ -3,7 +3,8 @@
declare(strict_types=1);
return [
'version' => '5.0.0-alpha.1',
'version' => env('COOLIFY_VERSION', '5.0.0-alpha.1'),
'channel' => env('COOLIFY_CHANNEL', 'stable'),
'helper_version' => '2.0.0',
'self_hosted' => env('SELF_HOSTED', true),
'autoupdate' => env('AUTOUPDATE_ENABLED', false),