coolify/resources/views/livewire/project/application/environment-variable/all.blade.php

25 lines
988 B
PHP
Raw Normal View History

2023-05-05 09:28:00 +02:00
<div class="flex flex-col gap-2">
2023-05-31 10:19:29 +02:00
<div>
2023-06-02 12:34:45 +02:00
<h2>Environment Variables</h2>
2023-06-05 12:07:55 +02:00
<div class="text-sm">Environment (secrets) variables for normal deployments.</div>
2023-05-31 10:19:29 +02:00
</div>
2023-06-05 12:07:55 +02:00
@foreach ($application->environment_variables as $env)
2023-05-05 12:08:38 +02:00
<livewire:project.application.environment-variable.show wire:key="environment-{{ $env->id }}"
:env="$env" />
2023-06-05 12:07:55 +02:00
@endforeach
<div class="pt-2 pb-8">
2023-06-15 09:15:41 +02:00
<livewire:project.application.environment-varia /ble.add />
2023-05-16 20:47:59 +02:00
</div>
2023-06-05 12:07:55 +02:00
<div>
<h3>Preview Deployments</h3>
<div class="text-sm">Environment (secrets) variables for Preview Deployments.</div>
</div>
@foreach ($application->environment_variables_preview as $env)
<livewire:project.application.environment-variable.show wire:key="environment-{{ $env->id }}"
:env="$env" />
@endforeach
<div class="pt-2 pb-8">
<livewire:project.application.environment-variable.add is_preview="true" />
</div>
2023-05-05 09:28:00 +02:00
</div>