2023-04-25 12:43:35 +00:00
|
|
|
<div>
|
2023-06-07 15:11:21 +00:00
|
|
|
<h1>Create a new Application</h1>
|
2023-07-26 11:23:47 +00:00
|
|
|
<div class="pb-4">Deploy any public Git repositories.</div>
|
2023-06-12 11:48:26 +00:00
|
|
|
<form class="flex flex-col gap-2" wire:submit.prevent>
|
2023-06-05 10:07:55 +00:00
|
|
|
<div class="flex flex-col gap-2">
|
|
|
|
<div class="flex flex-col">
|
2023-06-12 11:48:26 +00:00
|
|
|
<div class="flex items-end gap-2">
|
2023-06-28 11:37:00 +00:00
|
|
|
<x-forms.input wire:keydown.enter='load_branch' id="repository_url" label="Repository URL"
|
2023-08-11 18:19:42 +00:00
|
|
|
helper="{!! __('repository.url') !!}" />
|
2023-06-28 11:37:00 +00:00
|
|
|
<x-forms.button wire:click.prevent="load_branch">
|
2023-06-05 10:07:55 +00:00
|
|
|
Check repository
|
|
|
|
</x-forms.button>
|
|
|
|
</div>
|
2023-06-28 11:37:00 +00:00
|
|
|
@if ($branch_found)
|
2023-07-26 11:23:47 +00:00
|
|
|
@if ($rate_limit_remaining && $rate_limit_reset)
|
|
|
|
<div class="flex gap-2 py-2">
|
|
|
|
<div>Rate Limit</div>
|
|
|
|
<x-helper
|
2023-08-11 18:19:42 +00:00
|
|
|
helper="Rate limit remaining: {{ $rate_limit_remaining }}<br>Rate limit reset at: {{ $rate_limit_reset }}" />
|
2023-07-26 11:23:47 +00:00
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
<h3 class="pt-8 pb-2">Details</h3>
|
2023-06-16 11:42:02 +00:00
|
|
|
<div class="flex flex-col gap-2 pb-6">
|
|
|
|
<div class="flex gap-2">
|
2023-10-06 11:52:15 +00:00
|
|
|
@if ($git_source === 'other')
|
|
|
|
<x-forms.input id="git_branch" label="Selected branch"
|
|
|
|
helper="You can select other branches after configuration is done." />
|
|
|
|
@else
|
|
|
|
<x-forms.input disabled id="git_branch" label="Selected branch"
|
|
|
|
helper="You can select other branches after configuration is done." />
|
|
|
|
@endif
|
2023-06-16 11:42:02 +00:00
|
|
|
@if ($is_static)
|
|
|
|
<x-forms.input id="publish_directory" label="Publish Directory"
|
2023-08-11 18:19:42 +00:00
|
|
|
helper="If there is a build process involved (like Svelte, React, Next, etc..), please specify the output directory for the build assets." />
|
2023-06-16 11:42:02 +00:00
|
|
|
@else
|
|
|
|
<x-forms.input type="number" id="port" label="Port" :readonly="$is_static"
|
2023-08-11 18:19:42 +00:00
|
|
|
helper="The port your application listens on." />
|
2023-06-16 11:42:02 +00:00
|
|
|
@endif
|
|
|
|
</div>
|
2023-06-21 09:58:10 +00:00
|
|
|
<div class="w-52">
|
|
|
|
<x-forms.checkbox instantSave id="is_static" label="Is it a static site?"
|
2023-08-11 18:19:42 +00:00
|
|
|
helper="If your application is a static site or the final build assets should be served as a static site, enable this." />
|
2023-06-21 09:58:10 +00:00
|
|
|
</div>
|
2023-06-05 11:50:34 +00:00
|
|
|
</div>
|
2023-06-12 11:48:26 +00:00
|
|
|
<x-forms.button wire:click.prevent='submit'>
|
2023-06-05 11:50:34 +00:00
|
|
|
Save New Application
|
|
|
|
</x-forms.button>
|
2023-06-05 10:07:55 +00:00
|
|
|
@endif
|
|
|
|
</div>
|
2023-05-11 13:20:02 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
2023-04-25 12:43:35 +00:00
|
|
|
</div>
|