admin widget zu dokploy geswitched

This commit is contained in:
Codex Agent
2025-11-18 16:45:56 +01:00
parent 6720ad84cf
commit 125c624588
22 changed files with 693 additions and 512 deletions

11
config/dokploy.php Normal file
View File

@@ -0,0 +1,11 @@
<?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) ?? [],
];