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
51 lines
2.8 KiB
PHP
51 lines
2.8 KiB
PHP
<div>
|
|
<x-slot:title>
|
|
Auto Update | MapleDeploy
|
|
</x-slot>
|
|
<x-settings.navbar />
|
|
<div x-data="{ activeTab: window.location.hash ? window.location.hash.substring(1) : 'general' }" class="flex flex-col h-full gap-8 sm:flex-row">
|
|
<x-settings.sidebar activeMenu="updates" />
|
|
<form wire:submit='submit' class="flex flex-col w-full">
|
|
<div class="flex items-center gap-2">
|
|
<h2>Updates</h2>
|
|
<x-forms.button type="submit">
|
|
Save
|
|
</x-forms.button>
|
|
</div>
|
|
<div class="pb-4">Your instance's update settings.</div>
|
|
|
|
|
|
<div class="flex flex-col gap-2">
|
|
<div class="flex items-end gap-2">
|
|
<x-forms.input required id="update_check_frequency" label="Update Check Frequency"
|
|
placeholder="0 * * * *"
|
|
helper="Frequency (cron expression) to check for new versions and pull new service templates.<br>You can use every_minute, hourly, daily, weekly, monthly, yearly.<br><br>Default is every hour." />
|
|
<x-forms.button wire:click='checkManually'>Check Manually</x-forms.button>
|
|
</div>
|
|
|
|
<h4 class="pt-4">Auto Update</h4>
|
|
|
|
<div class="text-right md:w-64">
|
|
@if (!is_null(config('constants.coolify.autoupdate', null)))
|
|
<div class="text-right">
|
|
<x-forms.checkbox instantSave
|
|
helper="AUTOUPDATE is set in .env file, you need to modify it there." disabled
|
|
checked="{{ config('constants.coolify.autoupdate') }}" label="Enabled" />
|
|
</div>
|
|
@else
|
|
<x-forms.checkbox instantSave id="is_auto_update_enabled" label="Enabled" />
|
|
@endif
|
|
</div>
|
|
@if (is_null(config('constants.coolify.autoupdate', null)) && $is_auto_update_enabled)
|
|
<x-forms.input required id="auto_update_frequency" label="Frequency (cron expression)"
|
|
placeholder="0 0 * * *"
|
|
helper="Frequency (cron expression) (automatically update coolify).<br>You can use every_minute, hourly, daily, weekly, monthly, yearly.<br><br>Default is every day at 00:00" />
|
|
@else
|
|
<x-forms.input required label="Frequency (cron expression)" disabled placeholder="disabled"
|
|
helper="Frequency (cron expression) (automatically update coolify).<br>You can use every_minute, hourly, daily, weekly, monthly, yearly.<br><br>Default is every day at 00:00" />
|
|
@endif
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|