Create a new Application

@if ($repositories->count() > 0) Change Repositories on GitHub @endif
Deploy any public or private Git repositories through a GitHub App.
@if ($github_apps->count() !== 0)
@if ($current_step === 'github_apps')

Select a Github App

@foreach ($github_apps as $ghapp)
{{ data_get($ghapp, 'name') }}
{{ data_get($ghapp, 'html_url') }}
@endforeach
@endif @if ($current_step === 'repository') @if ($repositories->count() > 0)
@foreach ($repositories as $repo) @endforeach
Load Repository
@else
No repositories found. Check your GitHub App configuration.
@endif @if ($branches->count() > 0) {{-- Repository Detection --}}

Smart Scan

Detected configuration from your repository.

Scanning repository for Dockerfiles and configuration...
@if ($detectionRan)
@if (count($detectedDockerfiles)) Dockerfile{{ count($detectedDockerfiles) > 1 ? 's' : '' }} ({{ count($detectedDockerfiles) }}) @endif @if (count($detectedDockerComposeFiles)) Docker Compose ({{ count($detectedDockerComposeFiles) }}) @endif @include('livewire.project.new.partials.env-detection-badges') @if (!count($detectedDockerfiles) && !count($detectedDockerComposeFiles) && !count($detectedEnvFiles)) No Dockerfile, Docker Compose, or env files detected. @endif
@endif

Configuration

@foreach ($branches as $branch) @if ($loop->first) @else @endif @endforeach @if ($is_static) @endif
{{-- Dockerfile selector when multiple detected --}} @if ($build_pack === 'dockerfile' && count($detectedDockerfiles) > 1) @foreach ($detectedDockerfiles as $df) @endforeach @endif @if ($build_pack === 'dockercompose') @if (count($detectedDockerComposeFiles) > 1) @foreach ($detectedDockerComposeFiles as $cf) @endforeach @endif
Compose file location in your repository:
@else @endif @if ($show_is_static)
@endif
Continue @endif @endif
{{-- Environment Variables Import Modal --}} @include('livewire.project.new.partials.env-import-modal') @else
No GitHub Application found. Please create a new GitHub Application.
@endif