logs ot fixes in executeNow.
errors handled properly, etc.
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
/* @tailwind base;
|
||||
/* @tailwind base; */
|
||||
@tailwind components;
|
||||
@tailwind utilities; */
|
||||
@tailwind utilities;
|
||||
|
||||
15
resources/views/livewire/application-form.blade.php
Normal file
15
resources/views/livewire/application-form.blade.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<div>
|
||||
<form class="flex flex-col">
|
||||
<label>Name</label>
|
||||
<input wire:model="name" type="text" name="name" />
|
||||
<label>Fqdn</label>
|
||||
<input wire:model="fqdn" type="text" name="fqdn" />
|
||||
<label>Repository</label>
|
||||
<input wire:model="git_repository" type="text" name="git_repository" />
|
||||
<label>Branch</label>
|
||||
<input wire:model="git_branch" type="text" name="git_branch" />
|
||||
<label>Commit SHA</label>
|
||||
<input wire:model="git_commit_sha" type="text" name="git_commit_sha" />
|
||||
|
||||
</form>
|
||||
</div>
|
||||
@@ -1,7 +1,7 @@
|
||||
<x-layout>
|
||||
<h1>Application</h1>
|
||||
<p>Name: {{ $application->name }}</p>
|
||||
<livewire:deploy-application :application_uuid="$application->uuid" />
|
||||
<livewire:deploy-application :applicationId="$application->id" />
|
||||
<livewire:application-form :applicationId="$application->id" />
|
||||
<div>
|
||||
<h2>Deployments</h2>
|
||||
@foreach ($deployments as $deployment)
|
||||
|
||||
Reference in New Issue
Block a user