repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/components/security/navbar.blade.php
resources/views/components/security/navbar.blade.php
<div class="pb-6"> <h1>Security</h1> <div class="subtitle">Security related settings.</div> <div class="navbar-main"> <nav class="flex items-center gap-6 scrollbar min-h-10"> <a href="{{ route('security.private-key.index') }}" {{ wireNavigate() }}> <button>Private Keys</b...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/components/server/sidebar-security.blade.php
resources/views/components/server/sidebar-security.blade.php
<div class="flex flex-col items-start gap-2 min-w-fit"> <a class="{{ request()->routeIs('server.security.patches') ? 'menu-item menu-item-active' : 'menu-item' }}" {{ wireNavigate() }} href="{{ route('server.security.patches', $parameters) }}"> Server Patching </a> <a class="{{ request()->ro...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/components/server/sidebar-proxy.blade.php
resources/views/components/server/sidebar-proxy.blade.php
<div class="flex flex-col items-start gap-2 min-w-fit"> <a class="{{ request()->routeIs('server.proxy') ? 'menu-item menu-item-active' : 'menu-item' }}" {{ wireNavigate() }} href="{{ route('server.proxy', $parameters) }}"> <button>Configuration</button> </a> @if ($server->proxySet()) ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/components/server/sidebar.blade.php
resources/views/components/server/sidebar.blade.php
<div class="flex flex-col items-start gap-2 min-w-fit"> <a class="menu-item {{ $activeMenu === 'general' ? 'menu-item-active' : '' }}" {{ wireNavigate() }} href="{{ route('server.show', ['server_uuid' => $server->uuid]) }}">General</a> @if ($server->isFunctional()) <a class="menu-item {{ $active...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/components/status/degraded.blade.php
resources/views/components/status/degraded.blade.php
@props([ 'status' => 'Degraded', ]) @php // Handle both colon format (backend) and parentheses format (from services.blade.php) // degraded:unhealthy → Degraded (unhealthy) // degraded (unhealthy) → degraded (unhealthy) (already formatted, display as-is) if (str($status)->contains('(')) { /...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/components/status/index.blade.php
resources/views/components/status/index.blade.php
@props([ 'title' => null, 'lastDeploymentLink' => null, 'resource' => null, ]) @if (str($resource->status)->startsWith('running')) <x-status.running :status="$resource->status" :title="$title" :lastDeploymentLink="$lastDeploymentLink" /> @elseif(str($resource->status)->startsWith('degraded')) <x-sta...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/components/status/running.blade.php
resources/views/components/status/running.blade.php
@props([ 'status' => 'Running', 'title' => null, 'lastDeploymentLink' => null, 'noLoading' => false, ]) @php // Handle both colon format (backend) and parentheses format (from services.blade.php) // running:healthy → Running (healthy) // running (healthy) → running (healthy) (already formatt...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/components/status/restarting.blade.php
resources/views/components/status/restarting.blade.php
@props([ 'status' => 'Restarting', 'title' => null, 'lastDeploymentLink' => null, 'noLoading' => false, ]) @php // Handle both colon format (backend) and parentheses format (from services.blade.php) // starting:unknown → Starting (unknown) // starting (unknown) → starting (unknown) (already ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/components/status/services.blade.php
resources/views/components/status/services.blade.php
@php $displayStatus = formatContainerStatus($complexStatus); @endphp @if (str($displayStatus)->lower()->contains('running')) <x-status.running :status="$displayStatus" /> @elseif(str($displayStatus)->lower()->contains('starting')) <x-status.restarting :status="$displayStatus" /> @elseif(str($displayStatus)-...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/components/status/stopped.blade.php
resources/views/components/status/stopped.blade.php
@props([ 'status' => 'Stopped', 'noLoading' => false, ]) @php // Handle both colon format (backend) and parentheses format (from services.blade.php) // For exited containers, health status is hidden (health checks don't run on stopped containers) // exited:unhealthy → Exited // exited (unhealthy...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/components/resources/breadcrumbs.blade.php
resources/views/components/resources/breadcrumbs.blade.php
@props([ 'lastDeploymentInfo' => null, 'lastDeploymentLink' => null, 'resource' => null, ]) @php $projects = auth()->user()->currentTeam()->projects()->get(); $environments = $resource->environment->project ->environments() ->with(['applications', 'services']) ->get(); $c...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
true
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/layouts/boarding.blade.php
resources/views/layouts/boarding.blade.php
@extends('layouts.base') @section('body') <main class="min-h-screen flex items-center justify-center p-4"> {{ $slot }} </main> @parent @endsection
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/layouts/simple.blade.php
resources/views/layouts/simple.blade.php
@extends('layouts.base') @section('body') @livewireScripts <main class="h-full bg-gray-50 dark:bg-base"> {{ $slot }} </main> @parent @endsection
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/layouts/base.blade.php
resources/views/layouts/base.blade.php
<!DOCTYPE html> <html data-theme="dark" lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <script> // Immediate theme application - runs before any rendering (function () { const t = localStorage.theme || 'dark'; const d = t === 'dark' || (t === 'system' && matchMedia('(prefers-color-schem...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/layouts/app.blade.php
resources/views/layouts/app.blade.php
@extends('layouts.base') @section('body') @parent @if (isSubscribed() || !isCloud()) <livewire:layout-popups /> @endif <!-- Global search component - included once to prevent keyboard shortcut duplication --> <livewire:global-search /> @auth <livewire:deployments-indicator /> ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/settings-email.blade.php
resources/views/livewire/settings-email.blade.php
<div> <x-slot:title> Transactional Email | Coolify </x-slot> <x-settings.navbar /> <form wire:submit='submit' class="flex flex-col gap-2 pb-4"> <div class="flex items-center gap-2"> <h2>Transactional Email</h2> <x-forms.button type="submit"> Save ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/switch-team.blade.php
resources/views/livewire/switch-team.blade.php
<x-forms.select wire:model.live="selectedTeamId"> <option value="default" disabled selected>Switch team</option> @foreach (auth()->user()->teams as $team) <option value="{{ $team->id }}">{{ $team->name }}</option> @endforeach </x-forms.select>
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/force-password-reset.blade.php
resources/views/livewire/force-password-reset.blade.php
<section class="bg-gray-50 dark:bg-base"> <div class="flex flex-col items-center justify-center px-6 py-8 mx-auto md:h-screen lg:py-0"> <a class="flex items-center mb-6 text-5xl font-extrabold tracking-tight text-gray-900 dark:text-white"> Coolify </a> <div class="w-full bg-white...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/settings-oauth.blade.php
resources/views/livewire/settings-oauth.blade.php
<div> <x-slot:title> Settings | Coolify </x-slot> <x-settings.navbar /> <form wire:submit='submit' class="flex flex-col"> <div class="flex flex-col"> <div class="flex items-center gap-2 pb-2"> <h2>Authentication</h2> <x-forms.button type="submi...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/settings-dropdown.blade.php
resources/views/livewire/settings-dropdown.blade.php
<div x-data="{ dropdownOpen: false, search: '', allEntries: [], darkColorContent: getComputedStyle($el).getPropertyValue('--color-base'), whiteColorContent: getComputedStyle($el).getPropertyValue('--color-white'), init() { this.mounted(); // Load all entries when component initia...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/layout-popups.blade.php
resources/views/livewire/layout-popups.blade.php
<div x-data="{ popups: { sponsorship: true, notification: true, realtime: false, }, isDevelopment: {{ isDev() ? 'true' : 'false' }}, init() { this.popups.sponsorship = this.shouldShowMonthlyPopup('popupSponsorship'); this.popups.notification = this.shouldShowMonth...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/dashboard.blade.php
resources/views/livewire/dashboard.blade.php
<div> <x-slot:title> Dashboard | Coolify </x-slot> @if (session('error')) <span x-data x-init="$wire.emit('error', '{{ session('error') }}')" /> @endif <h1>Dashboard</h1> <div class="subtitle">Your self-hosted infrastructure.</div> @if (request()->query->get('success')) ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/global-search.blade.php
resources/views/livewire/global-search.blade.php
<div x-data="{ modalOpen: false, selectedIndex: -1, isSearching: false, isLoadingInitialData: false, allSearchableItems: [], searchQuery: '', creatableItems: [], isCreateMode: false, // Client-side search function get searchResults() { if (!this.searchQuery || this.searc...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
true
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/settings-backup.blade.php
resources/views/livewire/settings-backup.blade.php
<div> <x-slot:title> Settings | Coolify </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:clic...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/navbar-delete-team.blade.php
resources/views/livewire/navbar-delete-team.blade.php
<div class="w-full px-2"> <x-modal-confirmation buttonFullWidth title="Confirm Team Deletion?" buttonTitle="Delete Team" isErrorButton submitAction="delete" :actions="['The current Team will be permanently deleted.']" confirmationText="{{ $team }}" confirmationLabel="Please confirm the execution of ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/upgrade.blade.php
resources/views/livewire/upgrade.blade.php
<div @if ($isUpgradeAvailable) title="New version available" @else title="No upgrade available" @endif x-init="$wire.checkUpdate" x-data="upgradeModal({ currentVersion: @js($currentVersion), latestVersion: @js($latestVersion), devMode: @js($devMode) })"> @if ($isUpgradeAvailable) ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/help.blade.php
resources/views/livewire/help.blade.php
<div class="flex flex-col w-full gap-2"> <div>Your feedback helps us to improve Coolify. Thank you! 💜</div> <form wire:submit="submit" class="flex flex-col gap-4 pt-4"> <x-forms.input minlength="3" required id="subject" label="Subject" placeholder="Help with..."></x-forms.input> <x-forms.textar...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/activity-monitor.blade.php
resources/views/livewire/activity-monitor.blade.php
@php use App\Actions\CoolifyTask\RunRemoteProcess; @endphp <div @class([ 'h-full flex flex-col overflow-hidden' => $fullHeight, 'h-full overflow-hidden' => !$fullHeight, ])> @if ($activity) @if (isset($header)) <div class="flex gap-2 pb-2 flex-shrink-0" @if ($isPollingActive) wire:poll.1...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/deployments-indicator.blade.php
resources/views/livewire/deployments-indicator.blade.php
<div wire:poll.3000ms x-data="{ expanded: @entangle('expanded'), reduceOpacity: @js($this->shouldReduceOpacity) }" class="fixed bottom-0 z-60 mb-4 left-0 lg:left-56 ml-4"> @if ($this->deploymentCount > 0) <div class="relative transition-opacity duration-200" :class="{ 'opacity-100': expa...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/verify-email.blade.php
resources/views/livewire/verify-email.blade.php
<div class="pt-4"> <x-forms.button wire:click="again">Send Verification Email Again</x-forms.button> </div>
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/storage/index.blade.php
resources/views/livewire/storage/index.blade.php
<div> <x-slot:title> Storages | Coolify </x-slot> <div class="flex items-center gap-2"> <h1>S3 Storages</h1> @can('create', App\Models\S3Storage::class) <x-modal-input buttonTitle="+ Add" title="New S3 Storage" :closeOutside="false"> <livewire:storage.crea...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/storage/form.blade.php
resources/views/livewire/storage/form.blade.php
<div> <form class="flex flex-col gap-2 pb-6" wire:submit='submit'> <div class="flex items-start gap-2"> <div class=""> <h1>Storage Details</h1> <div class="subtitle">{{ $storage->name }}</div> <div class="flex items-center gap-2 pb-4"> ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/storage/create.blade.php
resources/views/livewire/storage/create.blade.php
@can('create', App\Models\S3Storage::class) <div class="w-full"> <div class="mb-4">For more details, please visit the <a class="underline dark:text-warning" href="https://coolify.io/docs/knowledge-base/s3/introduction" target="_blank">Coolify Docs</a>.</div> <form class="flex flex-co...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/storage/show.blade.php
resources/views/livewire/storage/show.blade.php
<div> <x-slot:title> {{ data_get_str($storage, 'name')->limit(10) }} >Storages | Coolify </x-slot> <livewire:storage.form :storage="$storage" /> </div>
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/settings/advanced.blade.php
resources/views/livewire/settings/advanced.blade.php
<div> <x-slot:title> Advanced Settings | Coolify </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="a...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/settings/index.blade.php
resources/views/livewire/settings/index.blade.php
<div> <x-slot:title> Settings | Coolify </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="general" /...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/settings/updates.blade.php
resources/views/livewire/settings/updates.blade.php
<div> <x-slot:title> Auto Update | Coolify </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:subm...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/boarding/index.blade.php
resources/views/livewire/boarding/index.blade.php
@php use App\Enums\ProxyTypes; @endphp <x-slot:title> Onboarding | Coolify </x-slot> <section class="w-full"> <div class="flex flex-col items-center w-full space-y-8"> @if ($currentState === 'welcome') <div class="w-full max-w-2xl text-center space-y-8"> ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
true
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/admin/index.blade.php
resources/views/livewire/admin/index.blade.php
<div> <h1>Admin Dashboard</h1> <div class="flex gap-2 pt-4"> <h3>Who am I now?</h3> @if (session('impersonating')) <x-forms.button wire:click="back">Go back to root</x-forms.button> @endif </div> <div class="pb-4">{{ auth()->user()->name }} ({{ auth()->user()->email }...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/source/github/change.blade.php
resources/views/livewire/source/github/change.blade.php
<div> @if (data_get($github_app, 'app_id')) <form wire:submit='submit'> <div class="flex flex-col sm:flex-row sm:items-center gap-2"> <h1>GitHub App</h1> <div class="flex gap-2"> @if (data_get($github_app, 'installation_id')) ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/source/github/create.blade.php
resources/views/livewire/source/github/create.blade.php
@can('createAnyResource') <form wire:submit='createGitHubApp' class="flex flex-col w-full gap-2"> <div class="pb-2">This is required, if you would like to get full integration (commit / pull request deployments, etc) with GitHub.</div> <div class="flex gap-2"> <x-...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/tags/deployments.blade.php
resources/views/livewire/tags/deployments.blade.php
<div wire:poll.2000ms="getDeployments" wire:init='getDeployments'> @forelse ($deploymentsPerTagPerServer as $server_name => $deployments) <h4 class="py-4">{{ $server_name }}</h4> <div class="grid grid-cols-1 gap-2"> @foreach ($deployments as $deployment) <a {{ wireN...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/tags/show.blade.php
resources/views/livewire/tags/show.blade.php
<div> <div class="flex items-start gap-2 pb-10"> <div> <h1 class="pb-2">Tags</h1> <div>Tags help you to perform actions on multiple resources.</div> </div> </div> <div class="flex flex-wrap gap-2 "> @forelse ($tags as $oneTag) <a :class="{{ $tag?->...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/subscription/actions.blade.php
resources/views/livewire/subscription/actions.blade.php
<div> @if (subscriptionProvider() === 'stripe') <div class="pt-4"> <h2>Your current plan</h2> <div class="pb-4">Tier: <strong class="dark:text-warning"> @if (data_get(currentTeam(), 'subscription')->type() == 'dynamic') Pay-as-you-go ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/subscription/index.blade.php
resources/views/livewire/subscription/index.blade.php
<div> <x-slot:title> Subscribe | Coolify </x-slot> @if (auth()->user()->isAdminFromSession()) @if (request()->query->get('cancelled')) <div class="mb-6 rounded-sm alert-error"> <svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6 stroke-current shrink-0" fill="n...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/subscription/pricing-plans.blade.php
resources/views/livewire/subscription/pricing-plans.blade.php
<div x-data="{ selected: 'monthly' }" class="w-full pb-20"> <div class="px-6 mx-auto lg:px-8"> <div class="flex justify-center"> <fieldset class="grid grid-cols-2 p-1 text-xs font-semibold leading-5 text-center rounded-sm dark:text-white gap-x-1 dark:bg-white/5 bg-black/5"> ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/subscription/show.blade.php
resources/views/livewire/subscription/show.blade.php
<div> <x-slot:title> Subscription | Coolify </x-slot> <h1>Subscription</h1> <div class="subtitle">Here you can see and manage your subscription.</div> <livewire:subscription.actions /> </div>
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/environment-edit.blade.php
resources/views/livewire/project/environment-edit.blade.php
<div> <x-slot:title> {{ data_get_str($project, 'name')->limit(10) }} > Edit | Coolify </x-slot> <form wire:submit='submit' class="flex flex-col"> <div class="flex items-end gap-2"> <h1>Environment: {{ data_get_str($environment, 'name')->limit(15) }}</h1> <x-forms.butt...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/delete-project.blade.php
resources/views/livewire/project/delete-project.blade.php
<x-modal-confirmation title="Confirm Project Deletion?" buttonTitle="Delete Project" isErrorButton submitAction="delete" :actions="[ 'This will delete the selected project', 'All Environments inside the project will be deleted as well.', ]" confirmationLabel="Please confirm the execution of the ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/edit.blade.php
resources/views/livewire/project/edit.blade.php
<div> <x-slot:title> {{ data_get_str($project, 'name')->limit(10) }} > Edit | Coolify </x-slot> <form wire:submit='submit' class="flex flex-col pb-10"> <div class="flex gap-2"> <h1>{{ data_get_str($project, 'name')->limit(15) }}</h1> <div class="fl...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/clone-me.blade.php
resources/views/livewire/project/clone-me.blade.php
<form> <x-slot:title> {{ data_get_str($project, 'name')->limit(10) }} > Clone | Coolify </x-slot> <div class="flex flex-col"> <h1>Clone</h1> <div class="subtitle ">Quickly clone all resources to a new project or environment.</div> </div> <x-forms.input required id="newName" l...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/delete-environment.blade.php
resources/views/livewire/project/delete-environment.blade.php
<x-modal-confirmation title="Confirm Environment Deletion?" buttonTitle="Delete Environment" isErrorButton submitAction="delete" :actions="['This will delete the selected environment.']" confirmationLabel="Please confirm the execution of the actions by entering the Environment Name below" shortConfirmationL...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/index.blade.php
resources/views/livewire/project/index.blade.php
<div> <x-slot:title> Projects | Coolify </x-slot> <div class="flex gap-2"> <h1>Projects</h1> @can('createAnyResource') <x-modal-input buttonTitle="+ Add" title="New Project"> <livewire:project.add-empty /> </x-modal-input> @endcan <...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/add-empty.blade.php
resources/views/livewire/project/add-empty.blade.php
<form class="flex flex-col w-full gap-2 rounded-sm" wire:submit='submit'> <x-forms.input placeholder="Your Cool Project" id="name" label="Name" required /> <x-forms.input placeholder="This is my cool project everyone knows about" id="description" label="Description" /> <div class="subtitle">New project will...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/show.blade.php
resources/views/livewire/project/show.blade.php
<div> <x-slot:title> {{ data_get_str($project, 'name')->limit(10) }} > Environments | Coolify </x-slot> <div class="flex items-center gap-2"> <h1>Environments</h1> @can('update', $project) <x-modal-input buttonTitle="+ Add" title="New Environment"> <form c...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/service/heading.blade.php
resources/views/livewire/project/service/heading.blade.php
<div wire:poll.10000ms="checkStatus" class="pb-6"> <livewire:project.shared.configuration-checker :resource="$service" /> <x-slide-over @startservice.window="slideOverOpen = true" closeWithX fullScreen> <x-slot:title>Service Startup</x-slot:title> <x-slot:content> <livewire:activity-...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/service/file-storage.blade.php
resources/views/livewire/project/service/file-storage.blade.php
<div> <div class="flex flex-col gap-4 p-4 bg-white border dark:bg-base dark:border-coolgray-300 border-neutral-200"> @if ($isReadOnly) <div class="w-full p-2 text-sm rounded bg-warning/10 text-warning"> @if ($fileStorage->is_directory) This directory is mounte...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/service/stack-form.blade.php
resources/views/livewire/project/service/stack-form.blade.php
<form wire:submit.prevent='submit' class="flex flex-col gap-4 pb-2"> <div> <div class="flex gap-2"> <h2>Service Stack</h2> @if (isDev()) <div>{{ $service->compose_parsing_version }}</div> @endif <x-forms.button canGate="update" :canResource="$s...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/service/configuration.blade.php
resources/views/livewire/project/service/configuration.blade.php
<div> <x-slot:title> {{ data_get_str($service, 'name')->limit(10) }} > Configuration | Coolify </x-slot> <livewire:project.service.heading :service="$service" :parameters="$parameters" :query="$query" /> <div class="flex flex-col h-full gap-8 sm:flex-row"> <div class="flex flex-col item...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/service/edit-domain.blade.php
resources/views/livewire/project/service/edit-domain.blade.php
<div class="w-full"> <form wire:submit.prevent='submit' class="flex flex-col w-full gap-2"> @if($requiredPort) <x-callout type="warning" title="Required Port: {{ $requiredPort }}" class="mb-2"> This service requires port <strong>{{ $requiredPort }}</strong> to function correctly....
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/service/index.blade.php
resources/views/livewire/project/service/index.blade.php
<div x-data="{ activeTab: window.location.hash ? window.location.hash.substring(1) : 'general' }"> <livewire:project.service.heading :service="$service" :parameters="$parameters" :query="$query" /> <div class="flex flex-col h-full gap-8 sm:flex-row"> <div class="flex flex-col items-start gap-2 min-w-fit...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/service/edit-compose.blade.php
resources/views/livewire/project/service/edit-compose.blade.php
<div x-data="{ raw: true, showNormalTextarea: false, editorHeight: 400, calculateEditorHeight() { // Get viewport height const viewportHeight = window.innerHeight; // Modal max height is calc(100vh - 2rem) = viewport - 32px const modalMaxHeight = viewportHeight - 32; ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/service/database.blade.php
resources/views/livewire/project/service/database.blade.php
<div> <form wire:submit='submit'> <div class="flex items-center gap-2 pb-4"> @if ($database->human_name) <h2>{{ Str::headline($database->human_name) }}</h2> @else <h2>{{ Str::headline($database->name) }}</h2> @endif <x-forms.but...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/service/service-application-view.blade.php
resources/views/livewire/project/service/service-application-view.blade.php
<div> <form wire:submit='submit'> <div class="flex items-center gap-2 pb-4"> @if ($application->human_name) <h2>{{ Str::headline($application->human_name) }}</h2> @else <h2>{{ Str::headline($application->name) }}</h2> @endif <x-...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/service/storage.blade.php
resources/views/livewire/project/service/storage.blade.php
<div class="flex flex-col gap-4"> @if ( $resource->getMorphClass() == 'App\Models\Application' || $resource->getMorphClass() == 'App\Models\StandalonePostgresql' || $resource->getMorphClass() == 'App\Models\StandaloneRedis' || $resource->getMorphClass() == 'App\Models\Sta...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
true
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/new/docker-compose.blade.php
resources/views/livewire/project/new/docker-compose.blade.php
<div> <h1>Create a new Service</h1> <div class="pb-4">You can deploy complex services easily with Docker Compose.</div> <form wire:submit="submit"> <div class="flex gap-2 pb-1"> <h2>Docker Compose</h2> <x-forms.button type="submit">Save</x-forms.button> </div> ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/new/docker-image.blade.php
resources/views/livewire/project/new/docker-image.blade.php
<div x-data x-init="$nextTick(() => { if ($refs.autofocusInput) $refs.autofocusInput.focus(); })"> <h1>Create a new Application</h1> <div class="pb-4">You can deploy an existing Docker Image from any Registry.</div> <form wire:submit="submit"> <div class="flex gap-2 pt-4 pb-1"> <h2>Docke...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/new/select.blade.php
resources/views/livewire/project/new/select.blade.php
<div x-data x-init="$wire.loadServers"> <div x-data="searchResources()"> @if ($current_step === 'type') <div x-init="window.addEventListener('scroll', () => isSticky = window.pageYOffset > 100)" class="sticky z-10 top-0 backdrop-blur-sm border-b border-neutral-200 dark:border-co...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
true
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/new/github-private-repository.blade.php
resources/views/livewire/project/new/github-private-repository.blade.php
<div> <div class="flex items-end gap-2"> <h1>Create a new Application</h1> <x-modal-input buttonTitle="+ Add GitHub App" title="New GitHub App" closeOutside="false"> <livewire:source.github.create /> </x-modal-input> @if ($repositories->count() > 0) <a target=...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/new/github-private-repository-deploy-key.blade.php
resources/views/livewire/project/new/github-private-repository-deploy-key.blade.php
<div> <h1>Create a new Application</h1> <div class="pb-4">Deploy any public or private Git repositories through a Deploy Key.</div> <div class="flex flex-col "> @if ($current_step === 'private_keys') <h2 class="pb-4">Select a private key</h2> <div class="flex flex-col justify...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/new/public-git-repository.blade.php
resources/views/livewire/project/new/public-git-repository.blade.php
<div x-data x-init="$nextTick(() => { if ($refs.autofocusInput) $refs.autofocusInput.focus(); })"> <h1>Create a new Application</h1> <div class="pb-8">Deploy any public Git repositories.</div> <!-- Repository URL Form --> <form class="flex flex-col gap-2" wire:submit='loadBranch'> <div class="f...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/new/empty-project.blade.php
resources/views/livewire/project/new/empty-project.blade.php
<x-forms.button wire:click='createEmptyProject'>Empty Project</x-forms.button>
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/new/simple-dockerfile.blade.php
resources/views/livewire/project/new/simple-dockerfile.blade.php
<div> <h1>Create a new Application</h1> <div class="pb-4">You can deploy a simple Dockerfile, without Git.</div> <form wire:submit="submit"> <div class="flex gap-2 pb-1"> <h2>Dockerfile</h2> <x-forms.button type="submit">Save</x-forms.button> </div> <x-forms.t...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/resource/index.blade.php
resources/views/livewire/project/resource/index.blade.php
<div> <x-slot:title> {{ data_get_str($project, 'name')->limit(10) }} > Resources | Coolify </x-slot> <div class="flex flex-col"> <div class="flex items-center gap-2"> <h1>Resources</h1> @if ($environment->isEmpty()) @can('createAnyResource') ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
true
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/resource/create.blade.php
resources/views/livewire/project/resource/create.blade.php
<div> <x-slot:title> {{ data_get_str($project, 'name')->limit(10) }} > New | Coolify </x-slot> @if ($type === 'public') <livewire:project.new.public-git-repository :type="$type" /> @elseif ($type === 'private-gh-app') <livewire:project.new.github-private-repository :type="$type" ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/application/deployment-navbar.blade.php
resources/views/livewire/project/application/deployment-navbar.blade.php
<div class="flex items-center gap-2 pb-4"> <h2>Deployment Log</h2> @if (data_get($application_deployment_queue, 'status') === 'queued') <x-forms.button wire:click.prevent="force_start">Force Start</x-forms.button> @endif @if ( data_get($application_deployment_queue, 'status') === 'in...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/application/general.blade.php
resources/views/livewire/project/application/general.blade.php
<div x-data="{ initLoadingCompose: $wire.entangle('initLoadingCompose'), canUpdate: @js(auth()->user()->can('update', $application)), shouldDisable() { return this.initLoadingCompose || !this.canUpdate; } }"> <form wire:submit='submit' class="flex flex-col pb-32"> <div class="flex it...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
true
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/application/heading.blade.php
resources/views/livewire/project/application/heading.blade.php
<nav wire:poll.10000ms="checkStatus" class="pb-6"> <x-resources.breadcrumbs :resource="$application" :parameters="$parameters" :title="$lastDeploymentInfo" :lastDeploymentLink="$lastDeploymentLink" /> <div class="navbar-main"> <nav class="flex shrink-0 gap-6 items-center whitespace-nowrap scrollbar min-...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/application/swarm.blade.php
resources/views/livewire/project/application/swarm.blade.php
<div> <form wire:submit='submit' class="flex flex-col"> <div class="flex items-center gap-2"> <h2>Swarm Configuration</h2> @can('update', $application) <x-forms.button type="submit"> Save </x-forms.button> @else ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/application/rollback.blade.php
resources/views/livewire/project/application/rollback.blade.php
<div x-init="$wire.loadImages"> <div class="flex items-center gap-2"> <h2>Rollback</h2> @can('view', $application) <x-forms.button wire:click='loadImages(true)'>Reload Available Images</x-forms.button> @endcan </div> <div class="pb-4">You can easily rollback to a previous...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/application/advanced.blade.php
resources/views/livewire/project/application/advanced.blade.php
<div> <div class="flex flex-col md:w-96"> <div class="flex items-center gap-2"> <h2>Advanced</h2> </div> <div>Advanced configuration for your application.</div> <div class="flex flex-col gap-1 pt-4"> <h3>General</h3> @if ($application->git_based())...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/application/configuration.blade.php
resources/views/livewire/project/application/configuration.blade.php
<div> <x-slot:title> {{ data_get_str($application, 'name')->limit(10) }} > Configuration | Coolify </x-slot> <h1>Configuration</h1> <livewire:project.shared.configuration-checker :resource="$application" /> <livewire:project.application.heading :application="$application" /> <div class=...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/application/previews.blade.php
resources/views/livewire/project/application/previews.blade.php
<div> <livewire:project.application.preview.form :application="$application" /> @if (count($application->additional_servers) > 0) <div class="pb-4">Previews will be deployed on <span class="dark:text-warning">{{ $application->destination->server->name }}</span>.</div> @endif <div...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/application/destination.blade.php
resources/views/livewire/project/application/destination.blade.php
<div> <h2>Destination</h2> <div class="">The destination server / network where your application will be deployed to.</div> <div class="py-4 "> <p>Server: {{ data_get($destination, 'server.name') }}</p> <p>Destination Network: {{ $destination->network }}</p> </div> </div>
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/application/source.blade.php
resources/views/livewire/project/application/source.blade.php
<div> <form wire:submit='submit' class="flex flex-col"> <div class="flex items-center gap-2"> <h2>Source</h2> @can('update', $application) <x-forms.button type="submit">Save</x-forms.button> @endcan <div class="flex items-center gap-4 px-2"> ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/application/previews-compose.blade.php
resources/views/livewire/project/application/previews-compose.blade.php
<form wire:submit="save" class="flex items-end gap-2"> <x-forms.input helper="One domain per preview." label="Domains for {{ $serviceName }}" id="domain" canGate="update" :canResource="$preview->application"></x-forms.input> <x-forms.button type="submit">Save</x-forms.button> <x-forms.button wire:cl...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/application/preview/form.blade.php
resources/views/livewire/project/application/preview/form.blade.php
<form wire:submit='submit'> <div class="flex items-center gap-2"> <h2>Preview Deployments</h2> @can('update', $application) <x-forms.button type="submit">Save</x-forms.button> <x-forms.button isHighlighted wire:click="resetToDefault">Reset template to default</x-forms.button>...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/application/deployment/index.blade.php
resources/views/livewire/project/application/deployment/index.blade.php
<div> <x-slot:title>{{ data_get_str($application, 'name')->limit(10) }} > Deployments | Coolify</x-slot> <h1>Deployments</h1> <livewire:project.shared.configuration-checker :resource="$application" /> <livewire:project.application.heading :application="$application" /> <div class="flex flex-col gap-...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/application/deployment/show.blade.php
resources/views/livewire/project/application/deployment/show.blade.php
<div> <x-slot:title> {{ data_get_str($application, 'name')->limit(10) }} > Deployment | Coolify </x-slot> <h1 class="py-0">Deployment</h1> <livewire:project.shared.configuration-checker :resource="$application" /> <livewire:project.application.heading :application="$applicati...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/database/heading.blade.php
resources/views/livewire/project/database/heading.blade.php
<nav wire:poll.10000ms="checkStatus" class="pb-6"> <x-resources.breadcrumbs :resource="$database" :parameters="$parameters" /> <x-slide-over @startdatabase.window="slideOverOpen = true" closeWithX fullScreen> <x-slot:title>Database Startup</x-slot:title> <x-slot:content> <div wire:ig...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/database/scheduled-backups.blade.php
resources/views/livewire/project/database/scheduled-backups.blade.php
<div> <div class="flex flex-col gap-2"> @if ($database->is_migrated && blank($database->custom_type)) <div> <div>Select the type of database to enable automated backups.</div> <div class="pb-4"> If your database is not listed, automated backups...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/database/create-scheduled-backup.blade.php
resources/views/livewire/project/database/create-scheduled-backup.blade.php
<form class="flex flex-col w-full gap-2 rounded-sm" wire:submit='submit'> <x-forms.input placeholder="0 0 * * * or daily" id="frequency" helper="You can use every_minute, hourly, daily, weekly, monthly, yearly or a cron expression." label="Frequency" required /> <h2>S3</h2> @if ($definedS3s-...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/database/configuration.blade.php
resources/views/livewire/project/database/configuration.blade.php
<div> <x-slot:title> {{ data_get_str($database, 'name')->limit(10) }} > Configuration | Coolify </x-slot> <h1>Configuration</h1> <livewire:project.shared.configuration-checker :resource="$database" /> <livewire:project.database.heading :database="$database" /> <div class="flex flex-col h...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/database/backup-executions.blade.php
resources/views/livewire/project/database/backup-executions.blade.php
<div wire:init='refreshBackupExecutions'> @isset($backup) <div class="flex items-center gap-2"> <h3 class="py-4">Executions <span class="text-xs">({{ $executions_count }})</span></h3> @if ($executions_count > 0) <div class="flex items-center gap-2"> ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/database/init-script.blade.php
resources/views/livewire/project/database/init-script.blade.php
<form wire:submit="submit"> <div class="flex items-end gap-2"> <x-forms.input id="filename" label="Filename" /> <x-forms.button type="submit">Save</x-forms.button> <x-modal-confirmation title="Confirm init-script deletion?" buttonTitle="Delete" isErrorButton submitAction="delete"...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/database/backup-edit.blade.php
resources/views/livewire/project/database/backup-edit.blade.php
<form wire:submit="submit"> <div class="flex gap-2 pb-2"> <h2>Scheduled Backup</h2> <x-forms.button type="submit"> Save </x-forms.button> @if (str($status)->startsWith('running')) <livewire:project.database.backup-now :backup="$backup" /> @endif ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/database/backup-now.blade.php
resources/views/livewire/project/database/backup-now.blade.php
<x-forms.button wire:click='backupNow'>Backup Now</x-forms.button>
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/database/import.blade.php
resources/views/livewire/project/database/import.blade.php
<div x-data="{ error: $wire.entangle('error'), filesize: $wire.entangle('filesize'), filename: $wire.entangle('filename'), isUploading: $wire.entangle('isUploading'), progress: $wire.entangle('progress'), s3FileSize: $wire.entangle('s3FileSize'), s3StorageId: $wire.entangle('s3StorageId'), ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/database/postgresql/general.blade.php
resources/views/livewire/project/database/postgresql/general.blade.php
<div> <dialog id="newInitScript" class="modal"> <form method="dialog" class="flex flex-col gap-2 rounded-sm modal-box" wire:submit='save_new_init_script'> <h3 class="text-lg font-bold">Add Init Script</h3> <x-forms.input placeholder="create_test_db.sql" id="new_filename" label="Filen...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/resources/views/livewire/project/database/mongodb/general.blade.php
resources/views/livewire/project/database/mongodb/general.blade.php
<div> <form wire:submit="submit" class="flex flex-col gap-2"> <div class="flex items-center gap-2"> <h2>General</h2> <x-forms.button type="submit" canGate="update" :canResource="$database"> Save </x-forms.button> </div> <div class="flex gap...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false