small fixes
This commit is contained in:
parent
6524fade3e
commit
3c4e5a080b
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "coolify",
|
||||
"name": "html",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
|
@ -1,3 +1,3 @@
|
||||
@tailwind base;
|
||||
/* @tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
@tailwind utilities; */
|
||||
|
@ -1,85 +1,29 @@
|
||||
<div>
|
||||
<div>
|
||||
<div>
|
||||
<label for="command">
|
||||
<input class="py-2 rounded ring-1" id="command" wire:model="command" type="text"/>
|
||||
</label>
|
||||
<button
|
||||
@disabled($activity)
|
||||
class="bg-indigo-500 rounded py-2 px-4 disabled:bg-gray-300"
|
||||
wire:click="runCommand"
|
||||
>
|
||||
Run command
|
||||
<button>
|
||||
</div>
|
||||
<label for="command">
|
||||
<input class="py-2 rounded ring-1" id="command" wire:model="command" type="text" />
|
||||
</label>
|
||||
<button wire:click="runCommand">Run command</button>
|
||||
|
||||
<div class="mt-2 flex gap-2">
|
||||
<button
|
||||
@disabled($activity)
|
||||
class="bg-indigo-500 rounded py-2 px-4 disabled:bg-gray-300"
|
||||
wire:click="runSleepingBeauty"
|
||||
>
|
||||
Run sleeping beauty
|
||||
<button>
|
||||
</div>
|
||||
<div class="mt-2 flex gap-2">
|
||||
<button
|
||||
@disabled($activity)
|
||||
class="bg-indigo-500 rounded py-2 px-4 disabled:bg-gray-300"
|
||||
wire:click="runDummyProjectBuild"
|
||||
>
|
||||
Build DummyProject
|
||||
<button>
|
||||
</div>
|
||||
|
||||
|
||||
@isset($activity?->id)
|
||||
<div>
|
||||
Activity: <span>{{ $activity?->id ?? 'waiting' }}</span>
|
||||
</div>
|
||||
@endisset
|
||||
<button wire:click="runSleepingBeauty">Run sleeping beauty</button>
|
||||
<button wire:click="runDummyProjectBuild">Build DummyProject</button>
|
||||
</div>
|
||||
|
||||
<div class="w-full h-10"></div>
|
||||
|
||||
|
||||
<div
|
||||
@if($isKeepAliveOn || $manualKeepAlive) wire:poll.750ms="polling" @endif
|
||||
>
|
||||
<pre
|
||||
style="
|
||||
background-color: #FFFFFF;
|
||||
width: 1200px;
|
||||
height: 600px;
|
||||
overflow-y: scroll;
|
||||
display: flex;
|
||||
flex-direction: column-reverse;
|
||||
"
|
||||
placeholder="Build output"
|
||||
>
|
||||
{{ data_get($activity, 'description') }}
|
||||
</pre>
|
||||
|
||||
<div>
|
||||
<input id="manualKeepAlive" name="manualKeepAlive" type="checkbox" wire:model="manualKeepAlive">
|
||||
<label for="manualKeepAlive"> Live content </label>
|
||||
</div>
|
||||
|
||||
@if($isKeepAliveOn || $manualKeepAlive)
|
||||
<div>
|
||||
<input id="manualKeepAlive" name="manualKeepAlive" type="checkbox" wire:model="manualKeepAlive">
|
||||
<label for="manualKeepAlive">Real-time logs</label>
|
||||
@if ($isKeepAliveOn || $manualKeepAlive)
|
||||
Polling...
|
||||
@endif
|
||||
|
||||
</div>
|
||||
|
||||
<pre
|
||||
style="
|
||||
background-color: #FFFFFF;
|
||||
width: 1200px;
|
||||
height: 300px;
|
||||
overflow-y: scroll;
|
||||
display: flex;
|
||||
flex-direction: column-reverse;
|
||||
"
|
||||
placeholder="Build output"
|
||||
>{{ json_encode(data_get($activity, 'properties'), JSON_PRETTY_PRINT) }}</pre>
|
||||
@isset($activity?->id)
|
||||
<div>
|
||||
Activity: <span>{{ $activity?->id ?? 'waiting' }}</span>
|
||||
</div>
|
||||
<pre style="width: 100%;overflow-y: scroll;"
|
||||
@if ($isKeepAliveOn || $manualKeepAlive) wire:poll.750ms="polling" @endif> {{ data_get($activity, 'description') }}</pre>
|
||||
<div>
|
||||
<div>Details:</div>
|
||||
<pre style="width: 100%;overflow-y: scroll;">{{ json_encode(data_get($activity, 'properties'), JSON_PRETTY_PRINT) }}</pre>
|
||||
</div>
|
||||
@endisset
|
||||
</div>
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
<body class="antialiased">
|
||||
<h1 class="text-3xl font-bold">
|
||||
Hello from Coolify!
|
||||
Coolify v4
|
||||
</h1>
|
||||
|
||||
<p class="mt-4">
|
||||
|
Loading…
Reference in New Issue
Block a user