Replace all Coolify branding with MapleDeploy across 111 files: - Logo, favicon, and color palette (Canadian red scale, stone greys) - Fonts: Overlock for headings, Inter for body (self-hosted woff2/ttf) - All ~70 page titles updated to "| MapleDeploy" - Auth pages, navbar, footer, email templates, settings, boarding flow - Remove Hetzner provider, Coolify Cloud upsells, sponsorship popups - Disable telemetry (Sentry DSN null, undead.coolify.io ping disabled) - Point auto-update to MapleDeploy Forgejo registry image - Redirect help/support links to mapledeploy.ca/contact - Add AGPL source code link to Forgejo repo in navbar - OpenAPI docs rebranded to MapleDeploy
41 lines
No EOL
2.1 KiB
PHP
41 lines
No EOL
2.1 KiB
PHP
<div>
|
|
<x-slot:title>
|
|
Terminal | MapleDeploy
|
|
</x-slot>
|
|
<h1>Terminal</h1>
|
|
<div class="flex gap-2 items-end subtitle">
|
|
<div>Execute commands on your servers and containers without leaving the browser.</div>
|
|
<x-helper
|
|
helper="If you're having trouble connecting to your server, make sure that the port is open.<br><br><a class='underline' href='https://coolify.io/docs/knowledge-base/server/firewall/#terminal' target='_blank'>Documentation</a>"></x-helper>
|
|
</div>
|
|
<div x-init="$wire.loadContainers()">
|
|
@if ($isLoadingContainers)
|
|
<div class="pt-1">
|
|
<x-loading text="Loading servers and containers..." />
|
|
</div>
|
|
@else
|
|
@if ($servers->count() > 0)
|
|
<form class="flex flex-col gap-2 justify-center xl:items-end xl:flex-row"
|
|
wire:submit="$dispatchSelf('connectToContainer')">
|
|
<x-forms.select id="selected_uuid" required wire:model.live="selected_uuid">
|
|
<option value="default">Select a server or container</option>
|
|
@foreach ($servers as $server)
|
|
<option value="{{ $server->uuid }}">{{ $server->name }}</option>
|
|
@foreach ($containers as $container)
|
|
@if ($container['server_uuid'] == $server->uuid)
|
|
<option value="{{ $container['uuid'] }}">
|
|
{{ $server->name }} -> {{ $container['name'] }}
|
|
</option>
|
|
@endif
|
|
@endforeach
|
|
@endforeach
|
|
</x-forms.select>
|
|
<x-forms.button type="submit">Connect</x-forms.button>
|
|
</form>
|
|
@else
|
|
<div>No servers with terminal access found.</div>
|
|
@endif
|
|
@endif
|
|
<livewire:project.shared.terminal />
|
|
</div>
|
|
</div> |