Team Variables | Coolify

Team Shared Variables

@can('create', App\Models\SharedEnvironmentVariable::class) @endcan @can('update', $team) {{ $view === 'normal' ? 'Developer view' : 'Normal view' }} @endcan
You can use these variables anywhere with @{{ team.VARIABLENAME }}
@if ($view === 'normal')
@forelse ($team->environment_variables->sort()->sortBy('key') as $env) @empty
No environment variables found.
@endforelse
@else
@can('update', $team) Save All Environment Variables @else @endcan
@endif