13 lines
413 B
PHP
13 lines
413 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) ?? [],
|
|
'composes' => json_decode(env('DOKPLOY_COMPOSE_IDS', '{}'), true) ?? [],
|
|
];
|