2023-05-10 11:05:32 +00:00
|
|
|
<div>
|
2023-06-07 15:11:21 +00:00
|
|
|
<h1>Create a new Application</h1>
|
2023-06-16 10:35:40 +00:00
|
|
|
<div class="pt-2 pb-10 ">Deploy any public or private GIT repositories through a Deploy Key.</div>
|
2023-06-12 12:38:32 +00:00
|
|
|
<h3 class="py-2">Select a Private Key</h3>
|
2023-06-05 11:50:34 +00:00
|
|
|
@foreach ($private_keys as $key)
|
|
|
|
@if ($private_key_id == $key->id)
|
|
|
|
<x-forms.button class="bg-coollabs hover:bg-coollabs-100"
|
|
|
|
wire:click.defer="setPrivateKey('{{ $key->id }}')">
|
|
|
|
{{ $key->name }}</x-forms.button>
|
|
|
|
@else
|
|
|
|
<x-forms.button wire:click.defer="setPrivateKey('{{ $key->id }}')">{{ $key->name }}
|
|
|
|
</x-forms.button>
|
|
|
|
@endif
|
|
|
|
@endforeach
|
2023-06-12 12:38:32 +00:00
|
|
|
<a href="{{ route('private-key.new') }}">
|
|
|
|
<x-forms.button isHighlighted>+</x-forms.button>
|
|
|
|
</a>
|
2023-05-11 13:20:02 +00:00
|
|
|
@isset($private_key_id)
|
2023-06-12 12:38:32 +00:00
|
|
|
<form class="flex flex-col gap-2" wire:submit.prevent='submit'>
|
|
|
|
<x-forms.input id="repository_url" label="Repository URL" helper="{!! __('repository.url') !!}" />
|
|
|
|
<x-forms.input id="branch" label="Branch" />
|
|
|
|
<x-forms.checkbox instantSave id="is_static" label="Static Site?" />
|
|
|
|
@if ($is_static)
|
|
|
|
<x-forms.input id="publish_directory" label="Publish Directory" />
|
|
|
|
@else
|
|
|
|
<x-forms.input type="number" id="port" label="Port" :readonly="$is_static" />
|
|
|
|
@endif
|
2023-05-25 12:05:44 +00:00
|
|
|
<x-forms.button type="submit">
|
2023-06-12 12:38:32 +00:00
|
|
|
Save New Application
|
2023-05-25 12:05:44 +00:00
|
|
|
</x-forms.button>
|
2023-05-10 11:05:32 +00:00
|
|
|
</form>
|
|
|
|
@endisset
|
|
|
|
</div>
|