Some checks failed
Build MapleDeploy Coolify Image / build (push) Failing after 8s
- Replace logos, colors (red/stone palette), and fonts (Overlock/Inter) - Replace text logos with PNG from marketing API - Update AGPL source links to match repo owner - Update PostgreSQL to 17 for Alpine 3.23 - Add Forgejo Actions CI workflow - Remove upstream GitHub Actions workflows - Remove Coolify Cloud upsells, Hetzner provider, and telemetry - Update auto-update to point to Forgejo registry
20 lines
834 B
PHP
20 lines
834 B
PHP
<div>
|
|
<x-slot:title>
|
|
{{ data_get_str($project, 'name')->limit(10) }} > New | MapleDeploy
|
|
</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" />
|
|
@elseif ($type === 'private-deploy-key')
|
|
<livewire:project.new.github-private-repository-deploy-key :type="$type" />
|
|
@elseif ($type === 'dockerfile')
|
|
<livewire:project.new.simple-dockerfile :type="$type" />
|
|
@elseif ($type === 'docker-compose-empty')
|
|
<livewire:project.new.docker-compose :type="$type" />
|
|
@elseif ($type === 'docker-image')
|
|
<livewire:project.new.docker-image :type="$type" />
|
|
@else
|
|
<livewire:project.new.select />
|
|
@endif
|
|
</div>
|