2023-04-19 10:42:15 +00:00
|
|
|
<div>
|
2023-06-12 12:38:32 +00:00
|
|
|
<form wire:submit.prevent='submit' class="flex flex-col">
|
2023-05-31 08:19:29 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2023-06-02 10:34:45 +00:00
|
|
|
<h2>Source</h2>
|
2023-05-25 12:05:44 +00:00
|
|
|
<x-forms.button type="submit">Save</x-forms.button>
|
2023-06-12 12:38:32 +00:00
|
|
|
<a target="_blank" class="hover:no-underline" href="{{ $application?->gitBranchLocation }}">
|
2023-06-05 10:07:55 +00:00
|
|
|
<x-forms.button>
|
2023-06-14 09:03:54 +00:00
|
|
|
Open Repository
|
2023-08-11 18:19:42 +00:00
|
|
|
<x-external-link />
|
2023-05-31 08:19:29 +00:00
|
|
|
</x-forms.button>
|
2023-05-17 07:26:50 +00:00
|
|
|
</a>
|
2023-06-14 09:03:54 +00:00
|
|
|
@if (!$application->source->is_public)
|
|
|
|
<a target="_blank" class="hover:no-underline" href="{{ get_installation_path($application->source) }}">
|
|
|
|
<x-forms.button>
|
|
|
|
Open Git App
|
2023-08-11 18:19:42 +00:00
|
|
|
<x-external-link />
|
2023-06-14 09:03:54 +00:00
|
|
|
</x-forms.button>
|
|
|
|
</a>
|
|
|
|
@endif
|
2023-06-12 12:38:32 +00:00
|
|
|
<a target="_blank" class="flex hover:no-underline" href="{{ $application?->gitCommits }}">
|
2023-07-13 11:16:24 +00:00
|
|
|
<x-forms.button>Open Commits on Git
|
2023-08-11 18:19:42 +00:00
|
|
|
<x-external-link />
|
2023-05-31 08:19:29 +00:00
|
|
|
</x-forms.button>
|
2023-05-26 08:20:09 +00:00
|
|
|
</a>
|
2023-05-17 07:26:50 +00:00
|
|
|
</div>
|
2023-07-13 11:16:24 +00:00
|
|
|
<div class="pb-4">Code source of your application.</div>
|
|
|
|
|
|
|
|
<div class="flex gap-2">
|
|
|
|
<x-forms.input placeholder="coollabsio/coolify-example" id="application.git_repository"
|
2023-08-11 18:19:42 +00:00
|
|
|
label="Repository" />
|
|
|
|
<x-forms.input placeholder="main" id="application.git_branch" label="Branch" />
|
2023-07-13 11:16:24 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex items-end gap-2">
|
2023-08-11 18:19:42 +00:00
|
|
|
<x-forms.input placeholder="HEAD" id="application.git_commit_sha" placeholder="HEAD" label="Commit SHA" />
|
2023-07-13 11:16:24 +00:00
|
|
|
|
|
|
|
</div>
|
2023-07-26 11:23:47 +00:00
|
|
|
@isset($application->private_key_id)
|
|
|
|
<h3 class="pt-4">Deploy Key</h3>
|
|
|
|
<div class="py-2 pt-4">Currently attache Private Key: <span
|
|
|
|
class="text-warning">{{ $application->private_key->name }}</span>
|
|
|
|
</div>
|
2023-07-13 11:16:24 +00:00
|
|
|
|
2023-07-26 11:23:47 +00:00
|
|
|
<h4 class="py-2 ">Select another Private Key</h4>
|
2023-06-12 12:38:32 +00:00
|
|
|
<div class="flex gap-2">
|
|
|
|
@foreach ($private_keys as $key)
|
|
|
|
<x-forms.button wire:click.defer="setPrivateKey('{{ $key->id }}')">{{ $key->name }}
|
|
|
|
</x-forms.button>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
2023-07-26 11:23:47 +00:00
|
|
|
@endisset
|
2023-05-17 07:26:50 +00:00
|
|
|
</form>
|
2023-04-19 10:42:15 +00:00
|
|
|
</div>
|