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
43 lines
2.5 KiB
PHP
43 lines
2.5 KiB
PHP
<div>
|
|
<x-slot:title>
|
|
{{ data_get_str($server, 'name')->limit(10) }} > Swarm | MapleDeploy
|
|
</x-slot>
|
|
<livewire:server.navbar :server="$server" />
|
|
<div class="flex flex-col h-full gap-8 sm:flex-row">
|
|
<x-server.sidebar :server="$server" activeMenu="swarm" />
|
|
<div class="w-full">
|
|
<div>
|
|
<div class="flex items-center gap-2">
|
|
<h2>Swarm <span class="text-xs text-neutral-500">(experimental)</span></h2>
|
|
</div>
|
|
<div class="pb-4">Read the docs <a class='underline dark:text-white'
|
|
href='https://coolify.io/docs/knowledge-base/docker/swarm' target='_blank'>here</a>.
|
|
</div>
|
|
</div>
|
|
|
|
<div class="w-96">
|
|
@if ($server->settings->is_swarm_worker)
|
|
<x-forms.checkbox disabled instantSave type="checkbox" id="isSwarmManager"
|
|
helper="For more information, please read the documentation <a class='dark:text-white' href='https://coolify.io/docs/knowledge-base/docker/swarm' target='_blank'>here</a>."
|
|
label="Is it a Swarm Manager?" />
|
|
@else
|
|
<x-forms.checkbox canGate="update" :canResource="$server" instantSave
|
|
type="checkbox" id="isSwarmManager"
|
|
helper="For more information, please read the documentation <a class='dark:text-white' href='https://coolify.io/docs/knowledge-base/docker/swarm' target='_blank'>here</a>."
|
|
label="Is it a Swarm Manager?" />
|
|
@endif
|
|
|
|
@if ($server->settings->is_swarm_manager)
|
|
<x-forms.checkbox disabled instantSave type="checkbox" id="isSwarmWorker"
|
|
helper="For more information, please read the documentation <a class='dark:text-white' href='https://coolify.io/docs/knowledge-base/docker/swarm' target='_blank'>here</a>."
|
|
label="Is it a Swarm Worker?" />
|
|
@else
|
|
<x-forms.checkbox canGate="update" :canResource="$server" instantSave
|
|
type="checkbox" id="isSwarmWorker"
|
|
helper="For more information, please read the documentation <a class='dark:text-white' href='https://coolify.io/docs/knowledge-base/docker/swarm' target='_blank'>here</a>."
|
|
label="Is it a Swarm Worker?" />
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|