20 lines
674 B
PHP
20 lines
674 B
PHP
<?php
|
|
|
|
return [
|
|
// First tagged release is v0.1.0 (semantic, not -dev). The live build hash
|
|
// is resolved from .git at runtime (see App\Livewire\Versions\Index).
|
|
'version' => '0.5.0',
|
|
|
|
// Default user channel. Only 'stable' and 'beta' are ever offered to users.
|
|
'channel' => 'stable',
|
|
|
|
// Install-time panel domain (APP_DOMAIN). The dashboard Setting overrides it; this
|
|
// is the fallback so a domain set during install still gets automatic TLS.
|
|
'domain' => env('APP_DOMAIN'),
|
|
|
|
// Real project home (self-hosted Gitea) + license. Open-core, AGPL.
|
|
'repository' => 'https://git.bave.dev/boban/clusev',
|
|
|
|
'license' => 'AGPL-3.0',
|
|
];
|