2026-01-02 15:29:48 +00:00
|
|
|
<div>
|
|
|
|
|
<livewire:project.service.heading :service="$service" :parameters="$parameters" :query="$query" />
|
|
|
|
|
<div class="flex flex-col h-full gap-8 sm:flex-row">
|
|
|
|
|
<x-service-database.sidebar :parameters="$parameters" :serviceDatabase="$serviceDatabase" :isImportSupported="$isImportSupported" />
|
|
|
|
|
<div class="w-full">
|
|
|
|
|
<x-slot:title>
|
|
|
|
|
{{ data_get_str($service, 'name')->limit(10) }} >
|
feat(branding): apply MapleDeploy branding to Coolify fork
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
2026-02-08 22:34:51 +00:00
|
|
|
{{ data_get_str($serviceDatabase, 'name')->limit(10) }} > Backups | MapleDeploy
|
2026-01-02 15:29:48 +00:00
|
|
|
</x-slot>
|
|
|
|
|
<div class="flex gap-2">
|
|
|
|
|
<h2 class="pb-4">Scheduled Backups</h2>
|
|
|
|
|
@if (filled($serviceDatabase->custom_type) || !$serviceDatabase->is_migrated)
|
|
|
|
|
@can('update', $serviceDatabase)
|
|
|
|
|
<x-modal-input buttonTitle="+ Add" title="New Scheduled Backup">
|
|
|
|
|
<livewire:project.database.create-scheduled-backup :database="$serviceDatabase" />
|
|
|
|
|
</x-modal-input>
|
|
|
|
|
@endcan
|
|
|
|
|
@endif
|
|
|
|
|
</div>
|
|
|
|
|
<livewire:project.database.scheduled-backups :database="$serviceDatabase" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|