Files
fotospiel-app/config/dokploy.php
Codex Agent 78af7838bf
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled
Use Dokploy projects in dashboard widget
2026-01-29 10:40:10 +01:00

14 lines
490 B
PHP

<?php
return [
'api' => [
'base_url' => rtrim(env('DOKPLOY_API_BASE_URL', ''), '/'),
'token' => env('DOKPLOY_API_KEY'),
'timeout' => (int) env('DOKPLOY_API_TIMEOUT', 10),
],
'web_url' => env('DOKPLOY_WEB_URL'),
'applications' => json_decode(env('DOKPLOY_APPLICATION_IDS', '{}'), true) ?? [],
'projects' => json_decode(env('DOKPLOY_PROJECT_IDS', '{}'), true) ?? [],
'composes' => json_decode(env('DOKPLOY_COMPOSE_IDS', '{}'), true) ?? [],
];