2023-04-25 11:01:56 +02:00
|
|
|
<x-layout>
|
2023-05-11 15:20:02 +02:00
|
|
|
@if ($type === 'public')
|
2023-08-11 20:19:42 +02:00
|
|
|
<livewire:project.new.public-git-repository :type="$type" />
|
2023-05-11 15:20:02 +02:00
|
|
|
@elseif ($type === 'private-gh-app')
|
2023-08-11 20:19:42 +02:00
|
|
|
<livewire:project.new.github-private-repository :type="$type" />
|
2023-05-11 15:20:02 +02:00
|
|
|
@elseif ($type === 'private-deploy-key')
|
2023-08-11 20:19:42 +02:00
|
|
|
<livewire:project.new.github-private-repository-deploy-key :type="$type" />
|
2023-08-11 22:41:47 +02:00
|
|
|
@elseif ($type === 'dockerfile')
|
|
|
|
<livewire:project.new.simple-dockerfile :type="$type" />
|
2023-09-25 15:48:43 +02:00
|
|
|
@elseif ($type === 'docker-compose-empty')
|
2023-09-19 15:51:13 +02:00
|
|
|
<livewire:project.new.docker-compose :type="$type" />
|
2023-10-09 15:49:48 +02:00
|
|
|
@elseif ($type === 'docker-image')
|
|
|
|
<livewire:project.new.docker-image :type="$type" />
|
2023-07-26 13:23:47 +02:00
|
|
|
@else
|
2023-08-11 20:19:42 +02:00
|
|
|
<livewire:project.new.select />
|
2023-04-26 13:25:41 +02:00
|
|
|
@endif
|
2023-04-25 11:01:56 +02:00
|
|
|
</x-layout>
|