This commit is contained in:
Andras Bacsai 2023-06-13 08:47:14 +02:00
parent 0f7512a394
commit a4177ca0ec
5 changed files with 10 additions and 5 deletions

View File

@ -7,7 +7,7 @@
// The release version of your application
// Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD'))
'release' => trim(exec('jq -r .coolify.v4.version versions.json')) ?? 'unknown',
'release' => trim(exec('jq -r .coolify.v4.version versions.json 2>/dev/null')) ?? 'unknown',
// When left empty or `null` the Laravel environment will be used
'environment' => config('app.env'),

View File

@ -2,7 +2,9 @@
<div class="flex items-center justify-center h-screen">
<div>
<div class="flex flex-col items-center pb-8">
<div class="text-5xl font-bold tracking-tight text-center text-white">Coolify</div>
<a href="{{ route('dashboard') }}">
<div class="text-5xl font-bold tracking-tight text-center text-white">Coolify</div>
</a>
<x-version />
</div>

View File

@ -2,7 +2,9 @@
<div class="flex items-center justify-center h-screen mx-auto">
<div>
<div class="flex flex-col items-center pb-8">
<div class="text-5xl font-bold tracking-tight text-center text-white">Coolify</div>
<a href="{{ route('dashboard') }}">
<div class="text-5xl font-bold tracking-tight text-center text-white">Coolify</div>
</a>
<x-version />
</div>
<div class="flex items-center gap-2">

View File

@ -4,7 +4,8 @@
@if ($servers->count() > 0)
<livewire:run-command :servers="$servers" />
@else
<div>No validated servers found.
<div>
<div>No validated servers found.</div>
<x-use-magic-bar />
</div>
@endif

View File

@ -7,7 +7,7 @@
class="box">{{ $project->name }}</a>
@empty
<div>
No project found.
<div>No project found.</div>
<x-use-magic-bar />
</div>
@endforelse