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
53 lines
2.6 KiB
PHP
53 lines
2.6 KiB
PHP
<div>
|
|
<x-slot:title>
|
|
Settings | MapleDeploy
|
|
</x-slot>
|
|
<x-settings.navbar />
|
|
<div class="flex flex-col">
|
|
<div class="flex items-center gap-2 pb-2">
|
|
<h2>Backup</h2>
|
|
@if (isset($database) && $server->isFunctional())
|
|
<x-forms.button type="submit" wire:click="submit">
|
|
Save
|
|
</x-forms.button>
|
|
@endif
|
|
</div>
|
|
<div class="pb-4">Backup configuration for Coolify instance.</div>
|
|
<div>
|
|
@if ($server->isFunctional())
|
|
@if (isset($database) && isset($backup))
|
|
<div class="flex flex-col gap-3 pb-4">
|
|
<div class="flex gap-2">
|
|
<x-forms.input label="UUID" readonly id="uuid" />
|
|
<x-forms.input label="Name" readonly id="name" />
|
|
<x-forms.input label="Description" id="description" />
|
|
</div>
|
|
<div class="flex gap-2">
|
|
<x-forms.input label="User" readonly id="postgres_user" />
|
|
<x-forms.input type="password" label="Password" readonly id="postgres_password" />
|
|
</div>
|
|
</div>
|
|
<livewire:project.database.backup-edit :backup="$backup" :s3s="$s3s" :status="data_get($database, 'status')" />
|
|
<div class="py-4">
|
|
<livewire:project.database.backup-executions :backup="$backup" />
|
|
</div>
|
|
@else
|
|
To configure automatic backup for your Coolify instance, you first need to add a database resource
|
|
into Coolify.
|
|
<x-forms.button class="mt-2" wire:click="addCoolifyDatabase">Configure Backup</x-forms.button>
|
|
@endif
|
|
@else
|
|
<div class="p-6 bg-red-500/10 rounded-lg border border-red-500/20">
|
|
<div class="text-red-500 font-medium mb-4">
|
|
Instance Backup is currently disabled because the localhost server is not properly validated.
|
|
Please validate your server to enable Instance Backup.
|
|
</div>
|
|
<a href="{{ route('server.show', [$server->uuid]) }}"
|
|
class="text-black hover:text-gray-700 dark:text-white dark:hover:text-gray-200 underline" {{ wireNavigate() }}>
|
|
Go to Server Settings to Validate
|
|
</a>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|