diff --git a/app/Actions/Proxy/CheckProxy.php b/app/Actions/Proxy/CheckProxy.php index 99537e606..eab534ef9 100644 --- a/app/Actions/Proxy/CheckProxy.php +++ b/app/Actions/Proxy/CheckProxy.php @@ -102,7 +102,8 @@ public function handle(Server $server, $fromUI = false): bool foreach ($conflicts as $port => $conflict) { if ($conflict) { if ($fromUI) { - throw new \Exception("Port $port is in use.
You must stop the process using this port.

Docs: https://coolify.io/docs
Discord: https://coolify.io/discord"); + // MapleDeploy branding: support links + throw new \Exception("Port $port is in use.
You must stop the process using this port.

Support: https://mapledeploy.ca/contact"); } else { return false; } diff --git a/app/Console/Commands/Init.php b/app/Console/Commands/Init.php index 66cb77838..4c0a53d50 100644 --- a/app/Console/Commands/Init.php +++ b/app/Console/Commands/Init.php @@ -263,15 +263,11 @@ private function restoreCoolifyDbBackup() } } + // MapleDeploy branding: telemetry disabled — no phone-home signal private function sendAliveSignal() { - $id = config('app.id'); - $version = config('constants.coolify.version'); - try { - Http::get("https://undead.coolify.io/v4/alive?appId=$id&version=$version"); - } catch (\Throwable $e) { - echo "Error in sending live signal: {$e->getMessage()}\n"; - } + // Disabled for MapleDeploy: do not send telemetry to coolify.io + return; } private function replaceSlashInEnvironmentName() diff --git a/app/Http/Controllers/Api/OpenApi.php b/app/Http/Controllers/Api/OpenApi.php index 33d21ba5d..26b3ef519 100644 --- a/app/Http/Controllers/Api/OpenApi.php +++ b/app/Http/Controllers/Api/OpenApi.php @@ -4,8 +4,9 @@ use OpenApi\Attributes as OA; -#[OA\Info(title: 'Coolify', version: '0.1')] -#[OA\Server(url: 'https://app.coolify.io/api/v1', description: 'Coolify Cloud API. Change the host to your own instance if you are self-hosting.')] +// MapleDeploy branding: API documentation +#[OA\Info(title: 'MapleDeploy', version: '0.1')] +#[OA\Server(url: '/api/v1', description: 'MapleDeploy API. Powered by Coolify.')] #[OA\SecurityScheme( type: 'http', scheme: 'bearer', diff --git a/app/Livewire/Help.php b/app/Livewire/Help.php index 490515875..29bd05aa2 100644 --- a/app/Livewire/Help.php +++ b/app/Livewire/Help.php @@ -35,14 +35,12 @@ public function submit() $mail->subject("[HELP]: {$this->subject}"); $type = set_transanctional_email_settings($settings); - // Sending feedback through Cloud API + // MapleDeploy branding: feedback sent to MapleDeploy support if (blank($type)) { - $url = 'https://app.coolify.io/api/feedback'; - Http::post($url, [ - 'content' => 'User: `'.auth()->user()?->email.'` with subject: `'.$this->subject.'` has the following problem: `'.$this->description.'`', - ]); + // No external API — log locally when SMTP not configured + \Illuminate\Support\Facades\Log::info('Feedback from '.auth()->user()?->email.': '.$this->subject.' — '.$this->description); } else { - send_user_an_email($mail, auth()->user()?->email, 'feedback@coollabs.io'); + send_user_an_email($mail, auth()->user()?->email, 'support@mapledeploy.ca'); } $this->dispatch('success', 'Feedback sent.', 'We will get in touch with you as soon as possible.'); $this->reset('description', 'subject'); diff --git a/config/app.php b/config/app.php index a94cfadd8..08b3bd88f 100644 --- a/config/app.php +++ b/config/app.php @@ -17,7 +17,7 @@ | */ - 'name' => env('APP_NAME', 'Coolify'), + 'name' => env('APP_NAME', 'MapleDeploy'), // MapleDeploy branding /* |-------------------------------------------------------------------------- diff --git a/config/constants.php b/config/constants.php index 0b404fe9d..bde7cec9a 100644 --- a/config/constants.php +++ b/config/constants.php @@ -1,16 +1,17 @@ [ 'version' => '4.0.0-beta.463', 'helper_version' => '1.0.12', 'realtime_version' => '1.0.10', 'self_hosted' => env('SELF_HOSTED', true), - 'autoupdate' => env('AUTOUPDATE'), + 'autoupdate' => env('AUTOUPDATE', false), 'base_config_path' => env('BASE_CONFIG_PATH', '/data/coolify'), - 'registry_url' => env('REGISTRY_URL', 'ghcr.io'), - 'helper_image' => env('HELPER_IMAGE', env('REGISTRY_URL', 'ghcr.io').'/coollabsio/coolify-helper'), - 'realtime_image' => env('REALTIME_IMAGE', env('REGISTRY_URL', 'ghcr.io').'/coollabsio/coolify-realtime'), + 'registry_url' => env('REGISTRY_URL', 'forgejo.mapledeploy.ca'), + 'helper_image' => env('HELPER_IMAGE', 'ghcr.io/coollabsio/coolify-helper'), + 'realtime_image' => env('REALTIME_IMAGE', 'ghcr.io/coollabsio/coolify-realtime'), 'is_windows_docker_desktop' => env('IS_WINDOWS_DOCKER_DESKTOP', false), 'cdn_url' => env('CDN_URL', 'https://cdn.coollabs.io'), 'versions_url' => env('VERSIONS_URL', env('CDN_URL', 'https://cdn.coollabs.io').'/coolify/versions.json'), @@ -19,8 +20,8 @@ ], 'urls' => [ - 'docs' => 'https://coolify.io/docs', - 'contact' => 'https://coolify.io/docs/contact', + 'docs' => 'https://mapledeploy.ca/docs', + 'contact' => 'https://mapledeploy.ca/contact', ], 'services' => [ @@ -85,12 +86,13 @@ 'verification_code_expiry_minutes' => 10, ], + // MapleDeploy branding: telemetry disabled 'sentry' => [ - 'sentry_dsn' => env('SENTRY_DSN'), + 'sentry_dsn' => null, ], 'webhooks' => [ - 'feedback_discord_webhook' => env('FEEDBACK_DISCORD_WEBHOOK'), + 'feedback_discord_webhook' => null, 'dev_webhook' => env('SERVEO_URL'), ], diff --git a/public/mapledeploy-favicon.ico b/public/mapledeploy-favicon.ico new file mode 100644 index 000000000..8cc2c38c1 Binary files /dev/null and b/public/mapledeploy-favicon.ico differ diff --git a/public/mapledeploy-logo.svg b/public/mapledeploy-logo.svg new file mode 100644 index 000000000..7442ad045 --- /dev/null +++ b/public/mapledeploy-logo.svg @@ -0,0 +1 @@ +MapleDeploy diff --git a/resources/css/app.css b/resources/css/app.css index eeba1ee01..3b6a883a9 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -13,10 +13,12 @@ @custom-variant dark (&:where(.dark, .dark *)); +/* MapleDeploy branding: Canadian red accent, stone greys */ @theme { --font-sans: Inter, sans-serif; + --font-display: 'Overlock', sans-serif; - --color-base: #101010; + --color-base: #0c0a09; --color-warning: #fcd452; --color-warning-50: #fefce8; --color-warning-100: #fef9c3; @@ -30,16 +32,16 @@ @theme { --color-warning-900: #713f12; --color-success: #22C55E; --color-error: #dc2626; - --color-coollabs-50: #f5f0ff; - --color-coollabs: #6b16ed; - --color-coollabs-100: #7317ff; - --color-coollabs-200: #5a12c7; - --color-coollabs-300: #4a0fa3; - --color-coolgray-100: #181818; - --color-coolgray-200: #202020; - --color-coolgray-300: #242424; - --color-coolgray-400: #282828; - --color-coolgray-500: #323232; + --color-coollabs-50: #fef3f2; + --color-coollabs: #d52b1e; + --color-coollabs-100: #f34d40; + --color-coollabs-200: #bc2519; + --color-coollabs-300: #9c2118; + --color-coolgray-100: #1c1917; + --color-coolgray-200: #292524; + --color-coolgray-300: #44403c; + --color-coolgray-400: #57534e; + --color-coolgray-500: #78716c; } /* diff --git a/resources/css/fonts.css b/resources/css/fonts.css index c8c4448eb..4154e6077 100644 --- a/resources/css/fonts.css +++ b/resources/css/fonts.css @@ -70,3 +70,12 @@ @font-face { src: url('../fonts/inter-v13-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-regular.woff2') format('woff2'); } +/* MapleDeploy branding: Overlock for headings */ +@font-face { + font-display: swap; + font-family: 'Overlock'; + font-style: normal; + font-weight: 900; + src: url('../fonts/overlock-v19-latin-900.woff2') format('woff2'), + url('../fonts/overlock-v19-latin-900.ttf') format('truetype'); +} diff --git a/resources/fonts/overlock-v19-latin-900.ttf b/resources/fonts/overlock-v19-latin-900.ttf new file mode 100644 index 000000000..0cd2b55d3 Binary files /dev/null and b/resources/fonts/overlock-v19-latin-900.ttf differ diff --git a/resources/fonts/overlock-v19-latin-900.woff2 b/resources/fonts/overlock-v19-latin-900.woff2 new file mode 100644 index 000000000..25b3a0177 Binary files /dev/null and b/resources/fonts/overlock-v19-latin-900.woff2 differ diff --git a/resources/views/auth/confirm-password.blade.php b/resources/views/auth/confirm-password.blade.php index ce8f21481..30feb761f 100644 --- a/resources/views/auth/confirm-password.blade.php +++ b/resources/views/auth/confirm-password.blade.php @@ -3,8 +3,8 @@
-

- Coolify +

+ MapleDeploy

Confirm Your Password diff --git a/resources/views/auth/forgot-password.blade.php b/resources/views/auth/forgot-password.blade.php index 4952cfabd..67745f125 100644 --- a/resources/views/auth/forgot-password.blade.php +++ b/resources/views/auth/forgot-password.blade.php @@ -3,8 +3,8 @@

-

- Coolify +

+ MapleDeploy

{{ __('auth.forgot_password_heading') }} diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php index ede49117a..8bbdf07bd 100644 --- a/resources/views/auth/login.blade.php +++ b/resources/views/auth/login.blade.php @@ -3,8 +3,8 @@

-

- Coolify +

+ MapleDeploy

diff --git a/resources/views/auth/register.blade.php b/resources/views/auth/register.blade.php index 0cf1a2772..483d3486d 100644 --- a/resources/views/auth/register.blade.php +++ b/resources/views/auth/register.blade.php @@ -13,8 +13,8 @@ function getOldOrLocal($key, $localValue)
-

- Coolify +

+ MapleDeploy

Create your account diff --git a/resources/views/auth/reset-password.blade.php b/resources/views/auth/reset-password.blade.php index 3e0c237b4..d3798de27 100644 --- a/resources/views/auth/reset-password.blade.php +++ b/resources/views/auth/reset-password.blade.php @@ -3,8 +3,8 @@

-

- Coolify +

+ MapleDeploy

{{ __('auth.reset_password') }} diff --git a/resources/views/auth/two-factor-challenge.blade.php b/resources/views/auth/two-factor-challenge.blade.php index 05dbcc90c..dbd491e00 100644 --- a/resources/views/auth/two-factor-challenge.blade.php +++ b/resources/views/auth/two-factor-challenge.blade.php @@ -47,8 +47,8 @@

-

- Coolify +

+ MapleDeploy

Two-Factor Authentication diff --git a/resources/views/components/emails/footer.blade.php b/resources/views/components/emails/footer.blade.php index 199aa96c1..9e64d8bde 100644 --- a/resources/views/components/emails/footer.blade.php +++ b/resources/views/components/emails/footer.blade.php @@ -1,6 +1,7 @@ {{ Illuminate\Mail\Markdown::parse('---') }} Thank you,
-{{ config('app.name') ?? 'Coolify' }} +{{ config('app.name') ?? 'MapleDeploy' }} -{{ Illuminate\Mail\Markdown::parse('[Contact Support](https://coolify.io/docs/contact)') }} +{{-- MapleDeploy branding: support link --}} +{{ Illuminate\Mail\Markdown::parse('[Contact Support](https://mapledeploy.ca/contact)') }} diff --git a/resources/views/components/navbar.blade.php b/resources/views/components/navbar.blade.php index 48b544ebb..5e2bab763 100644 --- a/resources/views/components/navbar.blade.php +++ b/resources/views/components/navbar.blade.php @@ -78,9 +78,10 @@ } }">

+ {{-- MapleDeploy branding --}}
- Coolify - + MapleDeploy + Powered by Coolify
@@ -291,20 +292,7 @@ class="{{ request()->is('team*') ? 'menu-item-active menu-item' : 'menu-item' }} Teams - @if (isCloud() && auth()->user()->isAdmin()) -
  • - - - - - Subscription - -
  • - @endif + {{-- MapleDeploy branding: Cloud subscription menu removed --}} @if (isInstanceAdmin())
  • @@ -324,20 +312,7 @@ class="{{ request()->is('settings*') ? 'menu-item-active menu-item' : 'menu-item
  • @endif - @if (isCloud() || isDev()) - @if (isInstanceAdmin() || session('impersonating')) -
  • - - - - - Admin - -
  • - @endif - @endif + {{-- MapleDeploy branding: Cloud admin menu removed --}}
    @if (isInstanceAdmin() && !isCloud()) @persist('upgrade') @@ -357,24 +332,19 @@ class="{{ request()->is('onboarding*') ? 'menu-item-active menu-item' : 'menu-it Onboarding --}} + {{-- MapleDeploy branding: AGPL source code link (license requirement) --}}
  • - - - - - - + + - Sponsor us + Source code
  • @endif - @if (!isSubscribed() && isCloud() && auth()->user()->teams()->get()->count() > 1) - - @endif
  • diff --git a/resources/views/components/pricing-plans.blade.php b/resources/views/components/pricing-plans.blade.php index 67b97e2d1..24396df82 100644 --- a/resources/views/components/pricing-plans.blade.php +++ b/resources/views/components/pricing-plans.blade.php @@ -35,19 +35,21 @@ class="font-bold dark:text-warning">{{ config('constants.limits.trial_period') }
  • + {{-- MapleDeploy branding: link to Forgejo source repo --}}

    Unlimited Trial Get Started + href="https://forgejo.mapledeploy.ca/mapledeploy/coolify">Get Started

    Start self-hosting without limits with - our - OSS version. Same features as the paid version, but you have to manage by yourself.

    + the + open source version. Same features as the paid version, but you have to manage by yourself.

    + {{-- MapleDeploy branding: link to mapledeploy.ca --}}
    For the detailed list of features, please visit our landing page: coolify.io
    + class="font-bold underline dark:text-white" href="https://mapledeploy.ca">mapledeploy.ca
    diff --git a/resources/views/components/settings/navbar.blade.php b/resources/views/components/settings/navbar.blade.php index 10df20e03..8102438f5 100644 --- a/resources/views/components/settings/navbar.blade.php +++ b/resources/views/components/settings/navbar.blade.php @@ -1,6 +1,6 @@

    Settings

    -
    Instance wide settings for Coolify.
    +
    Instance wide settings for MapleDeploy.
    @if (!$serverReachable) @@ -211,6 +180,7 @@ class="px-2 py-1 text-xs font-bold uppercase tracking-wide bg-coollabs/10 dark:b wire:model="remoteServerUser" :value="$remoteServerUser" />

    Non-root user is experimental: + {{-- MapleDeploy branding: link to upstream Coolify docs for technical reference --}} docs

    @@ -229,6 +199,7 @@ class="bg-red-200 dark:bg-red-900 px-1 rounded-sm">~/.ssh/authorized_keys

    + {{-- MapleDeploy branding: link to upstream Coolify docs for technical reference --}} For more help, check this documentation.

    @@ -248,12 +219,12 @@ class="bg-red-200 dark:bg-red-900 px-1 rounded-sm">~/.ssh/authorized_keys called resources). All CPU-intensive operations run on the target server.

    - The machine running Coolify. Not recommended for production + The machine running MapleDeploy. Not recommended for production workloads due to resource contention.

    - Any SSH-accessible server—cloud providers (AWS, Hetzner, - DigitalOcean), bare metal, or self-hosted infrastructure. + Any SSH-accessible server—cloud providers, + bare metal, or self-hosted infrastructure.

    @@ -336,7 +307,7 @@ class="text-xs bg-coolgray-300 dark:bg-coolgray-400 px-1 py-0.5 rounded">~/.ssh/ file.

    - Coolify generates ED25519 keys by default for optimal + MapleDeploy generates ED25519 keys by default for optimal security and performance.

    @@ -386,7 +357,7 @@ class="text-xs bg-coolgray-300 dark:bg-coolgray-400 px-1 py-0.5 rounded">~/.ssh/

    - Private keys are encrypted at rest in Coolify's database. + Private keys are encrypted at rest in the database.

    Deploy the public key to @@ -443,6 +414,7 @@ class="grid grid-cols-1 lg:grid-cols-2 gap-4 p-4 rounded-lg border border-neutra wire:model="remoteServerUser" />

    Non-root user support is experimental. + {{-- MapleDeploy branding: link to upstream Coolify docs for technical reference --}} Learn more @@ -473,7 +445,7 @@ class="grid grid-cols-1 lg:grid-cols-2 gap-4 p-4 rounded-lg border border-neutra - Coolify will automatically install Docker {{ $minDockerVersion }}+ if not present. + MapleDeploy will automatically install Docker {{ $minDockerVersion }}+ if not present.

    @@ -567,7 +539,7 @@ class="p-6 bg-neutral-50 dark:bg-coolgray-200 rounded-lg border border-neutral-2

    - Coolify installs Docker Engine, Docker Compose, and + MapleDeploy installs Docker Engine, Docker Compose, and configures system requirements automatically.

    diff --git a/resources/views/livewire/dashboard.blade.php b/resources/views/livewire/dashboard.blade.php index a58ca0a00..0aedf2a8f 100644 --- a/resources/views/livewire/dashboard.blade.php +++ b/resources/views/livewire/dashboard.blade.php @@ -1,6 +1,6 @@

    - Dashboard | Coolify + Dashboard | MapleDeploy @if (session('error')) diff --git a/resources/views/livewire/destination/index.blade.php b/resources/views/livewire/destination/index.blade.php index 003f1c5b5..39aa5420a 100644 --- a/resources/views/livewire/destination/index.blade.php +++ b/resources/views/livewire/destination/index.blade.php @@ -1,6 +1,6 @@
    - Destinations | Coolify + Destinations | MapleDeploy

    Destinations

    diff --git a/resources/views/livewire/force-password-reset.blade.php b/resources/views/livewire/force-password-reset.blade.php index 96efaaf39..b7b91714f 100644 --- a/resources/views/livewire/force-password-reset.blade.php +++ b/resources/views/livewire/force-password-reset.blade.php @@ -1,7 +1,7 @@
    - - Coolify + + MapleDeploy
    diff --git a/resources/views/livewire/help.blade.php b/resources/views/livewire/help.blade.php index dea6ca46c..1dd2d6a5b 100644 --- a/resources/views/livewire/help.blade.php +++ b/resources/views/livewire/help.blade.php @@ -1,5 +1,6 @@
    -
    Your feedback helps us to improve Coolify. Thank you! 💜
    + {{-- MapleDeploy branding --}} +
    Your feedback helps us improve MapleDeploy. Thank you!
    5) { this.popups.realtime = true; console.error( - 'Coolify could not connect to its real-time service. This will cause unusual problems on the UI if not fixed! Please check the related documentation (https://coolify.io/docs/knowledge-base/cloudflare/tunnels/overview) or get help on Discord (https://coollabs.io/discord).)' - ); + 'MapleDeploy could not connect to its real-time service. This will cause unusual problems on the UI if not fixed! Please contact support at support@mapledeploy.ca.' + ); // MapleDeploy branding } } @@ -70,13 +70,11 @@ WARNING: Cannot connect to real-time service + {{-- MapleDeploy branding: support links updated --}}
    This will cause unusual problems on the UI!

    - Please ensure that you have opened the - required ports or get - help on Discord. + Please contact MapleDeploy support for help.
    @@ -86,52 +84,7 @@ @endif @endauth - @if (instanceSettings()->is_sponsorship_popup_enabled && !isCloud()) - - - -
    - -
    -
    Love Coolify? Support our work. -
    -
    - We are already profitable thanks to YOU - but...
    We - would - like to - make - more cool features. -
    -
    - For this we need your help to support our work financially. -
    -
    -
    - GitHub - Sponsors - Open - Collective - Stripe -
    - Maybe next time -
    -
    -
    -
    -
    -
    - @endif + {{-- MapleDeploy branding: Coolify sponsorship popup removed --}} @if (currentTeam()->subscriptionPastOverDue())
    WARNING: Your subscription is in over-due. If your diff --git a/resources/views/livewire/notifications/discord.blade.php b/resources/views/livewire/notifications/discord.blade.php index 0e5406c78..ee5d60896 100644 --- a/resources/views/livewire/notifications/discord.blade.php +++ b/resources/views/livewire/notifications/discord.blade.php @@ -1,6 +1,6 @@
    - Notifications | Coolify + Notifications | MapleDeploy diff --git a/resources/views/livewire/notifications/email.blade.php b/resources/views/livewire/notifications/email.blade.php index 538851137..a1e902f97 100644 --- a/resources/views/livewire/notifications/email.blade.php +++ b/resources/views/livewire/notifications/email.blade.php @@ -1,6 +1,6 @@
    - Notifications | Coolify + Notifications | MapleDeploy diff --git a/resources/views/livewire/notifications/pushover.blade.php b/resources/views/livewire/notifications/pushover.blade.php index 74cd9e8d2..46db6d4e0 100644 --- a/resources/views/livewire/notifications/pushover.blade.php +++ b/resources/views/livewire/notifications/pushover.blade.php @@ -1,6 +1,6 @@
    - Notifications | Coolify + Notifications | MapleDeploy diff --git a/resources/views/livewire/notifications/slack.blade.php b/resources/views/livewire/notifications/slack.blade.php index 14c7b3508..e68e833b0 100644 --- a/resources/views/livewire/notifications/slack.blade.php +++ b/resources/views/livewire/notifications/slack.blade.php @@ -1,6 +1,6 @@
    - Notifications | Coolify + Notifications | MapleDeploy diff --git a/resources/views/livewire/notifications/telegram.blade.php b/resources/views/livewire/notifications/telegram.blade.php index 1c83caf70..eb7105866 100644 --- a/resources/views/livewire/notifications/telegram.blade.php +++ b/resources/views/livewire/notifications/telegram.blade.php @@ -1,6 +1,6 @@
    - Notifications | Coolify + Notifications | MapleDeploy diff --git a/resources/views/livewire/notifications/webhook.blade.php b/resources/views/livewire/notifications/webhook.blade.php index 7c32311bf..ed2d946a8 100644 --- a/resources/views/livewire/notifications/webhook.blade.php +++ b/resources/views/livewire/notifications/webhook.blade.php @@ -1,6 +1,6 @@
    - Notifications | Coolify + Notifications | MapleDeploy @@ -29,7 +29,7 @@ class="normal-case dark:text-white btn btn-xs no-animation btn-primary">
    diff --git a/resources/views/livewire/profile/index.blade.php b/resources/views/livewire/profile/index.blade.php index 11031b7f2..6d436e8eb 100644 --- a/resources/views/livewire/profile/index.blade.php +++ b/resources/views/livewire/profile/index.blade.php @@ -1,6 +1,6 @@
    - Profile | Coolify + Profile | MapleDeploy

    Profile

    Your user profile settings.
    diff --git a/resources/views/livewire/project/application/configuration.blade.php b/resources/views/livewire/project/application/configuration.blade.php index 34c859a18..68894674d 100644 --- a/resources/views/livewire/project/application/configuration.blade.php +++ b/resources/views/livewire/project/application/configuration.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($application, 'name')->limit(10) }} > Configuration | Coolify + {{ data_get_str($application, 'name')->limit(10) }} > Configuration | MapleDeploy

    Configuration

    diff --git a/resources/views/livewire/project/application/deployment/index.blade.php b/resources/views/livewire/project/application/deployment/index.blade.php index 6d3f619ad..e73c11c62 100644 --- a/resources/views/livewire/project/application/deployment/index.blade.php +++ b/resources/views/livewire/project/application/deployment/index.blade.php @@ -1,5 +1,5 @@
    - {{ data_get_str($application, 'name')->limit(10) }} > Deployments | Coolify + {{ data_get_str($application, 'name')->limit(10) }} > Deployments | MapleDeploy

    Deployments

    diff --git a/resources/views/livewire/project/application/deployment/show.blade.php b/resources/views/livewire/project/application/deployment/show.blade.php index 28872f4bc..0c52d1403 100644 --- a/resources/views/livewire/project/application/deployment/show.blade.php +++ b/resources/views/livewire/project/application/deployment/show.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($application, 'name')->limit(10) }} > Deployment | Coolify + {{ data_get_str($application, 'name')->limit(10) }} > Deployment | MapleDeploy

    Deployment

    diff --git a/resources/views/livewire/project/clone-me.blade.php b/resources/views/livewire/project/clone-me.blade.php index 3c7f874ce..c743df109 100644 --- a/resources/views/livewire/project/clone-me.blade.php +++ b/resources/views/livewire/project/clone-me.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($project, 'name')->limit(10) }} > Clone | Coolify + {{ data_get_str($project, 'name')->limit(10) }} > Clone | MapleDeploy

    Clone

    diff --git a/resources/views/livewire/project/database/backup/execution.blade.php b/resources/views/livewire/project/database/backup/execution.blade.php index 3e689645f..c239a35b2 100644 --- a/resources/views/livewire/project/database/backup/execution.blade.php +++ b/resources/views/livewire/project/database/backup/execution.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($database, 'name')->limit(10) }} > Backup | Coolify + {{ data_get_str($database, 'name')->limit(10) }} > Backup | MapleDeploy

    Backups

    diff --git a/resources/views/livewire/project/database/backup/index.blade.php b/resources/views/livewire/project/database/backup/index.blade.php index 05a0ce04e..8f36d7845 100644 --- a/resources/views/livewire/project/database/backup/index.blade.php +++ b/resources/views/livewire/project/database/backup/index.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($database, 'name')->limit(10) }} > Backups | Coolify + {{ data_get_str($database, 'name')->limit(10) }} > Backups | MapleDeploy

    Backups

    diff --git a/resources/views/livewire/project/database/configuration.blade.php b/resources/views/livewire/project/database/configuration.blade.php index 73f87c0e3..31cb1f66b 100644 --- a/resources/views/livewire/project/database/configuration.blade.php +++ b/resources/views/livewire/project/database/configuration.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($database, 'name')->limit(10) }} > Configuration | Coolify + {{ data_get_str($database, 'name')->limit(10) }} > Configuration | MapleDeploy

    Configuration

    diff --git a/resources/views/livewire/project/edit.blade.php b/resources/views/livewire/project/edit.blade.php index dfaf20ed9..bb2d2cda8 100644 --- a/resources/views/livewire/project/edit.blade.php +++ b/resources/views/livewire/project/edit.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($project, 'name')->limit(10) }} > Edit | Coolify + {{ data_get_str($project, 'name')->limit(10) }} > Edit | MapleDeploy
    diff --git a/resources/views/livewire/project/environment-edit.blade.php b/resources/views/livewire/project/environment-edit.blade.php index a8f4bae6f..d48069347 100644 --- a/resources/views/livewire/project/environment-edit.blade.php +++ b/resources/views/livewire/project/environment-edit.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($project, 'name')->limit(10) }} > Edit | Coolify + {{ data_get_str($project, 'name')->limit(10) }} > Edit | MapleDeploy
    diff --git a/resources/views/livewire/project/index.blade.php b/resources/views/livewire/project/index.blade.php index b9ee20326..1df99821d 100644 --- a/resources/views/livewire/project/index.blade.php +++ b/resources/views/livewire/project/index.blade.php @@ -1,6 +1,6 @@
    - Projects | Coolify + Projects | MapleDeploy

    Projects

    diff --git a/resources/views/livewire/project/new/public-git-repository.blade.php b/resources/views/livewire/project/new/public-git-repository.blade.php index 02489719a..13b797392 100644 --- a/resources/views/livewire/project/new/public-git-repository.blade.php +++ b/resources/views/livewire/project/new/public-git-repository.blade.php @@ -13,9 +13,10 @@
    + {{-- MapleDeploy branding: link to upstream examples (still useful) --}} For example application deployments, checkout Coolify - Examples. + href="https://github.com/coollabsio/coolify-examples/" target="_blank">example + repositories.
    diff --git a/resources/views/livewire/project/resource/create.blade.php b/resources/views/livewire/project/resource/create.blade.php index f5861b35b..8bb3e27b2 100644 --- a/resources/views/livewire/project/resource/create.blade.php +++ b/resources/views/livewire/project/resource/create.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($project, 'name')->limit(10) }} > New | Coolify + {{ data_get_str($project, 'name')->limit(10) }} > New | MapleDeploy @if ($type === 'public') diff --git a/resources/views/livewire/project/resource/index.blade.php b/resources/views/livewire/project/resource/index.blade.php index f18df5061..d7ef03571 100644 --- a/resources/views/livewire/project/resource/index.blade.php +++ b/resources/views/livewire/project/resource/index.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($project, 'name')->limit(10) }} > Resources | Coolify + {{ data_get_str($project, 'name')->limit(10) }} > Resources | MapleDeploy
    diff --git a/resources/views/livewire/project/service/configuration.blade.php b/resources/views/livewire/project/service/configuration.blade.php index c54c537ba..3e7abf483 100644 --- a/resources/views/livewire/project/service/configuration.blade.php +++ b/resources/views/livewire/project/service/configuration.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($service, 'name')->limit(10) }} > Configuration | Coolify + {{ data_get_str($service, 'name')->limit(10) }} > Configuration | MapleDeploy diff --git a/resources/views/livewire/project/service/database-backups.blade.php b/resources/views/livewire/project/service/database-backups.blade.php index f98d8c8e1..3a96b8cfd 100644 --- a/resources/views/livewire/project/service/database-backups.blade.php +++ b/resources/views/livewire/project/service/database-backups.blade.php @@ -5,7 +5,7 @@
    {{ data_get_str($service, 'name')->limit(10) }} > - {{ data_get_str($serviceDatabase, 'name')->limit(10) }} > Backups | Coolify + {{ data_get_str($serviceDatabase, 'name')->limit(10) }} > Backups | MapleDeploy

    Scheduled Backups

    diff --git a/resources/views/livewire/project/service/index.blade.php b/resources/views/livewire/project/service/index.blade.php index 04d30ae60..233b238c3 100644 --- a/resources/views/livewire/project/service/index.blade.php +++ b/resources/views/livewire/project/service/index.blade.php @@ -21,7 +21,7 @@ class="{{ request()->routeIs('project.service.configuration') ? 'menu-item-activ @if ($resourceType === 'application') {{ data_get_str($service, 'name')->limit(10) }} > - {{ data_get_str($serviceApplication, 'name')->limit(10) }} | Coolify + {{ data_get_str($serviceApplication, 'name')->limit(10) }} | MapleDeploy
    @@ -174,7 +174,7 @@ class="w-auto dark:bg-coolgray-200 dark:hover:bg-coolgray-300"> @elseif ($resourceType === 'database') {{ data_get_str($service, 'name')->limit(10) }} > - {{ data_get_str($serviceDatabase, 'name')->limit(10) }} | Coolify + {{ data_get_str($serviceDatabase, 'name')->limit(10) }} | MapleDeploy @if ($currentRoute === 'project.service.database.import') diff --git a/resources/views/livewire/project/shared/execute-container-command.blade.php b/resources/views/livewire/project/shared/execute-container-command.blade.php index f980d6f3c..fa28f31d5 100644 --- a/resources/views/livewire/project/shared/execute-container-command.blade.php +++ b/resources/views/livewire/project/shared/execute-container-command.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($resource, 'name')->limit(10) }} > Commands | Coolify + {{ data_get_str($resource, 'name')->limit(10) }} > Commands | MapleDeploy @if ($type === 'application') diff --git a/resources/views/livewire/project/shared/logs.blade.php b/resources/views/livewire/project/shared/logs.blade.php index 3a1afaa1c..bc67dd9d2 100644 --- a/resources/views/livewire/project/shared/logs.blade.php +++ b/resources/views/livewire/project/shared/logs.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($resource, 'name')->limit(10) }} > Logs | Coolify + {{ data_get_str($resource, 'name')->limit(10) }} > Logs | MapleDeploy @if ($type === 'application') diff --git a/resources/views/livewire/project/shared/scheduled-task/show.blade.php b/resources/views/livewire/project/shared/scheduled-task/show.blade.php index f312c0bf3..98b3edeeb 100644 --- a/resources/views/livewire/project/shared/scheduled-task/show.blade.php +++ b/resources/views/livewire/project/shared/scheduled-task/show.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($resource, 'name')->limit(10) }} > Scheduled Tasks | Coolify + {{ data_get_str($resource, 'name')->limit(10) }} > Scheduled Tasks | MapleDeploy @if ($type === 'application')

    Scheduled Task

    diff --git a/resources/views/livewire/project/show.blade.php b/resources/views/livewire/project/show.blade.php index 709efba60..a3a9393e3 100644 --- a/resources/views/livewire/project/show.blade.php +++ b/resources/views/livewire/project/show.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($project, 'name')->limit(10) }} > Environments | Coolify + {{ data_get_str($project, 'name')->limit(10) }} > Environments | MapleDeploy

    Environments

    diff --git a/resources/views/livewire/security/api-tokens.blade.php b/resources/views/livewire/security/api-tokens.blade.php index 23f0e263e..52ea1ec15 100644 --- a/resources/views/livewire/security/api-tokens.blade.php +++ b/resources/views/livewire/security/api-tokens.blade.php @@ -1,6 +1,6 @@
    - API Tokens | Coolify + API Tokens | MapleDeploy
    diff --git a/resources/views/livewire/security/cloud-tokens.blade.php b/resources/views/livewire/security/cloud-tokens.blade.php index 2edbcd30f..32b015d3c 100644 --- a/resources/views/livewire/security/cloud-tokens.blade.php +++ b/resources/views/livewire/security/cloud-tokens.blade.php @@ -1,6 +1,6 @@
    - Cloud Tokens | Coolify + Cloud Tokens | MapleDeploy diff --git a/resources/views/livewire/security/private-key/show.blade.php b/resources/views/livewire/security/private-key/show.blade.php index 7d90b5005..fe966ac09 100644 --- a/resources/views/livewire/security/private-key/show.blade.php +++ b/resources/views/livewire/security/private-key/show.blade.php @@ -1,6 +1,6 @@
    - Private Key | Coolify + Private Key | MapleDeploy
    diff --git a/resources/views/livewire/server/advanced.blade.php b/resources/views/livewire/server/advanced.blade.php index 33086aea1..295748c89 100644 --- a/resources/views/livewire/server/advanced.blade.php +++ b/resources/views/livewire/server/advanced.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($server, 'name')->limit(10) }} > Advanced | Coolify + {{ data_get_str($server, 'name')->limit(10) }} > Advanced | MapleDeploy
    diff --git a/resources/views/livewire/server/ca-certificate/show.blade.php b/resources/views/livewire/server/ca-certificate/show.blade.php index f49e7d0ae..b4a918695 100644 --- a/resources/views/livewire/server/ca-certificate/show.blade.php +++ b/resources/views/livewire/server/ca-certificate/show.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($server, 'name')->limit(10) }} > CA Certificate | Coolify + {{ data_get_str($server, 'name')->limit(10) }} > CA Certificate | MapleDeploy
    diff --git a/resources/views/livewire/server/charts.blade.php b/resources/views/livewire/server/charts.blade.php index 51953ab9a..d7ce259b5 100644 --- a/resources/views/livewire/server/charts.blade.php +++ b/resources/views/livewire/server/charts.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($server, 'name')->limit(10) }} > Metrics | Coolify + {{ data_get_str($server, 'name')->limit(10) }} > Metrics | MapleDeploy
    diff --git a/resources/views/livewire/server/cloud-provider-token/show.blade.php b/resources/views/livewire/server/cloud-provider-token/show.blade.php index 6fb65c411..0ba1a13d2 100644 --- a/resources/views/livewire/server/cloud-provider-token/show.blade.php +++ b/resources/views/livewire/server/cloud-provider-token/show.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($server, 'name')->limit(10) }} > Hetzner Token | Coolify + {{ data_get_str($server, 'name')->limit(10) }} > Hetzner Token | MapleDeploy
    diff --git a/resources/views/livewire/server/cloudflare-tunnel.blade.php b/resources/views/livewire/server/cloudflare-tunnel.blade.php index 2ebac9d41..75f5290df 100644 --- a/resources/views/livewire/server/cloudflare-tunnel.blade.php +++ b/resources/views/livewire/server/cloudflare-tunnel.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($server, 'name')->limit(10) }} > Cloudflare Tunnel | Coolify + {{ data_get_str($server, 'name')->limit(10) }} > Cloudflare Tunnel | MapleDeploy
    diff --git a/resources/views/livewire/server/create.blade.php b/resources/views/livewire/server/create.blade.php index b6e965ab4..162251f35 100644 --- a/resources/views/livewire/server/create.blade.php +++ b/resources/views/livewire/server/create.blade.php @@ -1,31 +1,6 @@ +{{-- MapleDeploy branding: Hetzner provider removed --}}
    - @can('viewAny', App\Models\CloudProviderToken::class) -
    - - -
    -
    - - - - -
    -
    Connect a Hetzner Server
    -
    - Deploy servers directly from your Hetzner Cloud account -
    -
    -
    -
    -
    - -
    -
    - -
    - @endcan -

    Add Server by IP Address

    diff --git a/resources/views/livewire/server/delete.blade.php b/resources/views/livewire/server/delete.blade.php index 073849452..61883b337 100644 --- a/resources/views/livewire/server/delete.blade.php +++ b/resources/views/livewire/server/delete.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($server, 'name')->limit(10) }} > Delete Server | Coolify + {{ data_get_str($server, 'name')->limit(10) }} > Delete Server | MapleDeploy
    diff --git a/resources/views/livewire/server/destinations.blade.php b/resources/views/livewire/server/destinations.blade.php index b5e8111e9..fac561ac6 100644 --- a/resources/views/livewire/server/destinations.blade.php +++ b/resources/views/livewire/server/destinations.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($server, 'name')->limit(10) }} > Destinations | Coolify + {{ data_get_str($server, 'name')->limit(10) }} > Destinations | MapleDeploy
    diff --git a/resources/views/livewire/server/docker-cleanup.blade.php b/resources/views/livewire/server/docker-cleanup.blade.php index 251137fa7..0cb259f50 100644 --- a/resources/views/livewire/server/docker-cleanup.blade.php +++ b/resources/views/livewire/server/docker-cleanup.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($server, 'name')->limit(10) }} > Docker Cleanup | Coolify + {{ data_get_str($server, 'name')->limit(10) }} > Docker Cleanup | MapleDeploy
    diff --git a/resources/views/livewire/server/index.blade.php b/resources/views/livewire/server/index.blade.php index 815bf43b5..8e9848940 100644 --- a/resources/views/livewire/server/index.blade.php +++ b/resources/views/livewire/server/index.blade.php @@ -1,6 +1,6 @@
    - Servers | Coolify + Servers | MapleDeploy

    Servers

    diff --git a/resources/views/livewire/server/log-drains.blade.php b/resources/views/livewire/server/log-drains.blade.php index afc963c28..17f626a8b 100644 --- a/resources/views/livewire/server/log-drains.blade.php +++ b/resources/views/livewire/server/log-drains.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($server, 'name')->limit(10) }} > Log Drains | Coolify + {{ data_get_str($server, 'name')->limit(10) }} > Log Drains | MapleDeploy
    diff --git a/resources/views/livewire/server/private-key/show.blade.php b/resources/views/livewire/server/private-key/show.blade.php index 1703e3bc9..9fe631b5b 100644 --- a/resources/views/livewire/server/private-key/show.blade.php +++ b/resources/views/livewire/server/private-key/show.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($server, 'name')->limit(10) }} > Private Key | Coolify + {{ data_get_str($server, 'name')->limit(10) }} > Private Key | MapleDeploy
    diff --git a/resources/views/livewire/server/proxy/dynamic-configurations.blade.php b/resources/views/livewire/server/proxy/dynamic-configurations.blade.php index 60e5ea710..2c466ce3a 100644 --- a/resources/views/livewire/server/proxy/dynamic-configurations.blade.php +++ b/resources/views/livewire/server/proxy/dynamic-configurations.blade.php @@ -1,6 +1,6 @@
    - Proxy Dynamic Configuration | Coolify + Proxy Dynamic Configuration | MapleDeploy
    diff --git a/resources/views/livewire/server/proxy/logs.blade.php b/resources/views/livewire/server/proxy/logs.blade.php index 8b72d78f1..bf9c139c0 100644 --- a/resources/views/livewire/server/proxy/logs.blade.php +++ b/resources/views/livewire/server/proxy/logs.blade.php @@ -1,6 +1,6 @@
    - Proxy Logs | Coolify + Proxy Logs | MapleDeploy
    diff --git a/resources/views/livewire/server/proxy/show.blade.php b/resources/views/livewire/server/proxy/show.blade.php index 725320292..04ac4ebd1 100644 --- a/resources/views/livewire/server/proxy/show.blade.php +++ b/resources/views/livewire/server/proxy/show.blade.php @@ -1,6 +1,6 @@
    - Proxy Configuration | Coolify + Proxy Configuration | MapleDeploy @if ($server->isFunctional()) diff --git a/resources/views/livewire/server/resources.blade.php b/resources/views/livewire/server/resources.blade.php index 8610cd704..921a32a7d 100644 --- a/resources/views/livewire/server/resources.blade.php +++ b/resources/views/livewire/server/resources.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($server, 'name')->limit(10) }} > Server Resources | Coolify + {{ data_get_str($server, 'name')->limit(10) }} > Server Resources | MapleDeploy
    diff --git a/resources/views/livewire/server/security/patches.blade.php b/resources/views/livewire/server/security/patches.blade.php index a4fe5b309..dd40cf66b 100644 --- a/resources/views/livewire/server/security/patches.blade.php +++ b/resources/views/livewire/server/security/patches.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($server, 'name')->limit(10) }} > Security | Coolify + {{ data_get_str($server, 'name')->limit(10) }} > Security | MapleDeploy diff --git a/resources/views/livewire/server/security/terminal-access.blade.php b/resources/views/livewire/server/security/terminal-access.blade.php index 3541c429d..4c940bdf7 100644 --- a/resources/views/livewire/server/security/terminal-access.blade.php +++ b/resources/views/livewire/server/security/terminal-access.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($server, 'name')->limit(10) }} > Terminal Access | Coolify + {{ data_get_str($server, 'name')->limit(10) }} > Terminal Access | MapleDeploy
    diff --git a/resources/views/livewire/server/sentinel.blade.php b/resources/views/livewire/server/sentinel.blade.php index 4016a30e4..1fcad8bc2 100644 --- a/resources/views/livewire/server/sentinel.blade.php +++ b/resources/views/livewire/server/sentinel.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($server, 'name')->limit(10) }} > Sentinel | Coolify + {{ data_get_str($server, 'name')->limit(10) }} > Sentinel | MapleDeploy
    diff --git a/resources/views/livewire/server/show.blade.php b/resources/views/livewire/server/show.blade.php index f58dc058b..d7c6dcc59 100644 --- a/resources/views/livewire/server/show.blade.php +++ b/resources/views/livewire/server/show.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($server, 'name')->limit(10) }} > General | Coolify + {{ data_get_str($server, 'name')->limit(10) }} > General | MapleDeploy
    diff --git a/resources/views/livewire/server/swarm.blade.php b/resources/views/livewire/server/swarm.blade.php index 1d18e2d31..5246f8ccd 100644 --- a/resources/views/livewire/server/swarm.blade.php +++ b/resources/views/livewire/server/swarm.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($server, 'name')->limit(10) }} > Swarm | Coolify + {{ data_get_str($server, 'name')->limit(10) }} > Swarm | MapleDeploy
    diff --git a/resources/views/livewire/settings-backup.blade.php b/resources/views/livewire/settings-backup.blade.php index 0d2fd6ceb..2554d7abe 100644 --- a/resources/views/livewire/settings-backup.blade.php +++ b/resources/views/livewire/settings-backup.blade.php @@ -1,6 +1,6 @@
    - Settings | Coolify + Settings | MapleDeploy
    diff --git a/resources/views/livewire/settings-dropdown.blade.php b/resources/views/livewire/settings-dropdown.blade.php index efd359098..e4d8f680b 100644 --- a/resources/views/livewire/settings-dropdown.blade.php +++ b/resources/views/livewire/settings-dropdown.blade.php @@ -308,14 +308,11 @@ class="flex items-center justify-center w-8 h-8 rounded-full dark:text-white hov
    + {{-- MapleDeploy branding: show version tag without linking to upstream releases --}} + class="px-2 py-1 text-xs font-semibold dark:bg-coolgray-300 dark:text-neutral-200 rounded-sm"> - - + CURRENT VERSION diff --git a/resources/views/livewire/settings-email.blade.php b/resources/views/livewire/settings-email.blade.php index c58ea189d..49b231455 100644 --- a/resources/views/livewire/settings-email.blade.php +++ b/resources/views/livewire/settings-email.blade.php @@ -1,6 +1,6 @@
    - Transactional Email | Coolify + Transactional Email | MapleDeploy diff --git a/resources/views/livewire/settings-oauth.blade.php b/resources/views/livewire/settings-oauth.blade.php index 7650a5654..3a5e1b176 100644 --- a/resources/views/livewire/settings-oauth.blade.php +++ b/resources/views/livewire/settings-oauth.blade.php @@ -1,6 +1,6 @@
    - Settings | Coolify + Settings | MapleDeploy diff --git a/resources/views/livewire/settings/advanced.blade.php b/resources/views/livewire/settings/advanced.blade.php index 3069c8479..536fbca25 100644 --- a/resources/views/livewire/settings/advanced.blade.php +++ b/resources/views/livewire/settings/advanced.blade.php @@ -1,6 +1,6 @@
    - Advanced Settings | Coolify + Advanced Settings | MapleDeploy
    Save
    -
    Advanced settings for your Coolify instance.
    +
    Advanced settings for your MapleDeploy instance.
    @@ -39,7 +39,7 @@ class="flex flex-col h-full gap-8 sm:flex-row">

    API Settings

    + helper="If enabled, authenticated requests to the REST API will be allowed. Configure API tokens in Security > API Tokens." />

    Confirmation Settings

    + helper="Show monthly sponsorship reminders. Disable to hide these messages permanently." />
    diff --git a/resources/views/livewire/settings/index.blade.php b/resources/views/livewire/settings/index.blade.php index 5a6319bc8..e209f53b1 100644 --- a/resources/views/livewire/settings/index.blade.php +++ b/resources/views/livewire/settings/index.blade.php @@ -1,6 +1,6 @@
    - Settings | Coolify + Settings | MapleDeploy
    Save
    -
    General configuration for your Coolify instance.
    +
    General configuration for your MapleDeploy instance.
    @@ -23,8 +23,8 @@ class="flex flex-col h-full gap-8 sm:flex-row"> Important: If you want the dashboard to be accessible over HTTPS, you must include https:// at the start of the URL. Without it, the dashboard will use HTTP and won’t be secured." placeholder="https://coolify.yourdomain.com" /> - +
    + helper="Timezone for the MapleDeploy instance. This is used for the update check and automatic update frequency." />
    @@ -74,10 +74,10 @@ class="px-4 py-2 text-gray-800 cursor-pointer hover:bg-gray-100 dark:hover:bg-co
    @@ -99,10 +99,10 @@ class="px-4 py-2 text-gray-800 cursor-pointer hover:bg-gray-100 dark:hover:bg-co confirmAction="confirmDomainUsage">
      -
    • The Coolify instance domain will conflict with existing resources
    • +
    • The MapleDeploy instance domain will conflict with existing resources
    • SSL certificates might not work correctly
    • Routing behavior will be unpredictable
    • -
    • You may not be able to access the Coolify dashboard properly
    • +
    • You may not be able to access the MapleDeploy dashboard properly
    diff --git a/resources/views/livewire/settings/updates.blade.php b/resources/views/livewire/settings/updates.blade.php index ddb01539b..9e00d127f 100644 --- a/resources/views/livewire/settings/updates.blade.php +++ b/resources/views/livewire/settings/updates.blade.php @@ -1,6 +1,6 @@
    - Auto Update | Coolify + Auto Update | MapleDeploy
    @@ -19,7 +19,7 @@
    + helper="Frequency (cron expression) to check for new versions and pull new service templates.
    You can use every_minute, hourly, daily, weekly, monthly, yearly.

    Default is every hour." /> Check Manually
    diff --git a/resources/views/livewire/shared-variables/environment/index.blade.php b/resources/views/livewire/shared-variables/environment/index.blade.php index 03f53ccc3..9db38c3d1 100644 --- a/resources/views/livewire/shared-variables/environment/index.blade.php +++ b/resources/views/livewire/shared-variables/environment/index.blade.php @@ -1,6 +1,6 @@
    - Environment Variables | Coolify + Environment Variables | MapleDeploy

    Environments

    diff --git a/resources/views/livewire/shared-variables/environment/show.blade.php b/resources/views/livewire/shared-variables/environment/show.blade.php index fde2d0ae8..f307ae4af 100644 --- a/resources/views/livewire/shared-variables/environment/show.blade.php +++ b/resources/views/livewire/shared-variables/environment/show.blade.php @@ -1,6 +1,6 @@
    - Environment Variable | Coolify + Environment Variable | MapleDeploy

    Shared Variables for {{ $project->name }}/{{ $environment->name }}

    diff --git a/resources/views/livewire/shared-variables/index.blade.php b/resources/views/livewire/shared-variables/index.blade.php index 3e19e5f1a..92820b2aa 100644 --- a/resources/views/livewire/shared-variables/index.blade.php +++ b/resources/views/livewire/shared-variables/index.blade.php @@ -1,6 +1,6 @@
    - Shared Variables | Coolify + Shared Variables | MapleDeploy

    Shared Variables

    diff --git a/resources/views/livewire/shared-variables/project/index.blade.php b/resources/views/livewire/shared-variables/project/index.blade.php index d3bd49255..8d7db8af6 100644 --- a/resources/views/livewire/shared-variables/project/index.blade.php +++ b/resources/views/livewire/shared-variables/project/index.blade.php @@ -1,6 +1,6 @@
    - Project Variables | Coolify + Project Variables | MapleDeploy

    Projects

    diff --git a/resources/views/livewire/shared-variables/project/show.blade.php b/resources/views/livewire/shared-variables/project/show.blade.php index f89ad9ce7..9c502b9dc 100644 --- a/resources/views/livewire/shared-variables/project/show.blade.php +++ b/resources/views/livewire/shared-variables/project/show.blade.php @@ -1,6 +1,6 @@
    - Project Variable | Coolify + Project Variable | MapleDeploy

    Shared Variables for {{ data_get($project, 'name') }}

    diff --git a/resources/views/livewire/shared-variables/team/index.blade.php b/resources/views/livewire/shared-variables/team/index.blade.php index fcfca35fb..46bad2927 100644 --- a/resources/views/livewire/shared-variables/team/index.blade.php +++ b/resources/views/livewire/shared-variables/team/index.blade.php @@ -1,6 +1,6 @@
    - Team Variables | Coolify + Team Variables | MapleDeploy

    Team Shared Variables

    diff --git a/resources/views/livewire/storage/index.blade.php b/resources/views/livewire/storage/index.blade.php index 52fe27c0e..eee88b4c3 100644 --- a/resources/views/livewire/storage/index.blade.php +++ b/resources/views/livewire/storage/index.blade.php @@ -1,6 +1,6 @@
    - Storages | Coolify + Storages | MapleDeploy

    S3 Storages

    diff --git a/resources/views/livewire/storage/show.blade.php b/resources/views/livewire/storage/show.blade.php index 1c3a11a69..a69e5eccf 100644 --- a/resources/views/livewire/storage/show.blade.php +++ b/resources/views/livewire/storage/show.blade.php @@ -1,6 +1,6 @@
    - {{ data_get_str($storage, 'name')->limit(10) }} >Storages | Coolify + {{ data_get_str($storage, 'name')->limit(10) }} >Storages | MapleDeploy
    diff --git a/resources/views/livewire/subscription/index.blade.php b/resources/views/livewire/subscription/index.blade.php index d1d933e04..70e293698 100644 --- a/resources/views/livewire/subscription/index.blade.php +++ b/resources/views/livewire/subscription/index.blade.php @@ -1,6 +1,6 @@
    - Subscribe | Coolify + Subscribe | MapleDeploy @if (auth()->user()->isAdminFromSession()) @if (request()->query->get('cancelled')) @@ -24,7 +24,8 @@ @else @if ($isUnpaid)
    - Your last payment was failed for Coolify Cloud. + {{-- MapleDeploy branding --}} + Your last payment failed for MapleDeploy.

    Open the following link, navigate to the button and pay your unpaid/past due @@ -42,7 +43,7 @@

    It looks like your previous subscription has been cancelled, because you forgot to pay - the bills.
    Please subscribe again to continue using Coolify.
    + the bills.
    Please subscribe again to continue using MapleDeploy.
    @endif
    diff --git a/resources/views/livewire/subscription/show.blade.php b/resources/views/livewire/subscription/show.blade.php index 2fb4b1191..9870a5d2c 100644 --- a/resources/views/livewire/subscription/show.blade.php +++ b/resources/views/livewire/subscription/show.blade.php @@ -1,6 +1,6 @@
    - Subscription | Coolify + Subscription | MapleDeploy

    Subscription

    Here you can see and manage your subscription.
    diff --git a/resources/views/livewire/team/admin-view.blade.php b/resources/views/livewire/team/admin-view.blade.php index 6bcb43cf8..95725c69a 100644 --- a/resources/views/livewire/team/admin-view.blade.php +++ b/resources/views/livewire/team/admin-view.blade.php @@ -1,6 +1,6 @@
    - Team Admin | Coolify + Team Admin | MapleDeploy

    Admin View

    diff --git a/resources/views/livewire/team/index.blade.php b/resources/views/livewire/team/index.blade.php index 8f54a57e3..3609d6e5d 100644 --- a/resources/views/livewire/team/index.blade.php +++ b/resources/views/livewire/team/index.blade.php @@ -1,6 +1,6 @@
    - Teams | Coolify + Teams | MapleDeploy diff --git a/resources/views/livewire/team/member/index.blade.php b/resources/views/livewire/team/member/index.blade.php index cb931d818..e7df70049 100644 --- a/resources/views/livewire/team/member/index.blade.php +++ b/resources/views/livewire/team/member/index.blade.php @@ -1,6 +1,6 @@
    - Team Members | Coolify + Team Members | MapleDeploy

    Members

    diff --git a/resources/views/livewire/terminal/index.blade.php b/resources/views/livewire/terminal/index.blade.php index 56a8acae7..47c64e6a8 100644 --- a/resources/views/livewire/terminal/index.blade.php +++ b/resources/views/livewire/terminal/index.blade.php @@ -1,6 +1,6 @@
    - Terminal | Coolify + Terminal | MapleDeploy

    Terminal

    diff --git a/resources/views/source/all.blade.php b/resources/views/source/all.blade.php index c6566d2f9..450be1ab0 100644 --- a/resources/views/source/all.blade.php +++ b/resources/views/source/all.blade.php @@ -1,6 +1,6 @@ - Sources | Coolify + Sources | MapleDeploy

    Sources