From 3ab4365fcaf4e5bc07cf64bc971c31f768aac032 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 11 Sep 2023 13:42:32 +0200 Subject: [PATCH 1/3] ui: user should know that the public key --- resources/views/livewire/boarding/index.blade.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/livewire/boarding/index.blade.php b/resources/views/livewire/boarding/index.blade.php index 69505d820..bee5f04b7 100644 --- a/resources/views/livewire/boarding/index.blade.php +++ b/resources/views/livewire/boarding/index.blade.php @@ -115,9 +115,9 @@ @if ($privateKeyType === 'create') - Copy this to your server's ~/.ssh/authorized_keys - file. - + + ACTION REQUIRED: Copy the 'Public Key' to your server's ~/.ssh/authorized_keys + file. @endif Save From 230155312f919b608f4590bd2c1d8dc727fb153c Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 11 Sep 2023 13:52:54 +0200 Subject: [PATCH 2/3] ui: services are not availble yet --- .../views/livewire/project/new/select.blade.php | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/resources/views/livewire/project/new/select.blade.php b/resources/views/livewire/project/new/select.blade.php index 3bada4dca..2e9e2f197 100644 --- a/resources/views/livewire/project/new/select.blade.php +++ b/resources/views/livewire/project/new/select.blade.php @@ -76,6 +76,10 @@ --}} +

Services

+
+ Ghost, Plausible, Wordpress, etc... Coming very very soon... +
@endif @if ($current_step === 'servers')
    @@ -135,10 +139,11 @@ @endif @if ($current_step === 'existing-postgresql') -
    - - Add Database - +
    + + Add Database + @endif From 4782446f424eb79cf43e968aa4ea6c47ccda7e6b Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 11 Sep 2023 13:53:08 +0200 Subject: [PATCH 3/3] ui: show registered users on waitlist page --- app/Http/Livewire/Waitlist/Index.php | 2 ++ resources/views/livewire/waitlist/index.blade.php | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/app/Http/Livewire/Waitlist/Index.php b/app/Http/Livewire/Waitlist/Index.php index 06d224afe..72d16b682 100644 --- a/app/Http/Livewire/Waitlist/Index.php +++ b/app/Http/Livewire/Waitlist/Index.php @@ -10,6 +10,7 @@ use Livewire\Component; class Index extends Component { public string $email; + public int $users = 0; public int $waitingInLine = 0; protected $rules = [ @@ -22,6 +23,7 @@ class Index extends Component public function mount() { $this->waitingInLine = Waitlist::whereVerified(true)->count(); + $this->users = User::count(); if (isDev()) { $this->email = 'waitlist@example.com'; } diff --git a/resources/views/livewire/waitlist/index.blade.php b/resources/views/livewire/waitlist/index.blade.php index ad6e30508..833193b58 100644 --- a/resources/views/livewire/waitlist/index.blade.php +++ b/resources/views/livewire/waitlist/index.blade.php @@ -23,7 +23,8 @@ Join Waitlist - Waiting in the line: {{ $waitingInLine }} +
    People waiting in the line: {{ $waitingInLine }}
    +
    Already using Coolify Cloud: {{ $users }}
    This is a paid & hosted version of Coolify.
    See the pricing here.