- Added VPN connection requirement to README.md for local access to the Logistics API. - Updated documentation_api_logistics.md to clarify usage environments and provide detailed connection instructions. - Modified update-documentation.mdc to include guidelines on handling sensitive information in examples. - Implemented automatic heading ID generation in Documentation.php for better navigation in the documentation. - Updated logistics.php configuration to include default values for base URL, API key, and folder. - Added support contact information in the dashboard view for API-related issues.
21 lines
510 B
PHP
21 lines
510 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'base_url' => env('LOGISTICS_API_BASE_URL', 'http://tse-10-test.esi.local'),
|
|
|
|
'api_key' => env('LOGISTICS_API_KEY', 'YOUR_API_KEY'),
|
|
|
|
'folder' => env('LOGISTICS_API_FOLDER', 'esigescom'),
|
|
|
|
'timeout' => (int) env('LOGISTICS_API_TIMEOUT', 30),
|
|
|
|
'connect_timeout' => (int) env('LOGISTICS_API_CONNECT_TIMEOUT', 10),
|
|
|
|
'retry' => [
|
|
'times' => (int) env('LOGISTICS_API_RETRY_TIMES', 3),
|
|
'sleep_ms' => (int) env('LOGISTICS_API_RETRY_SLEEP_MS', 500),
|
|
],
|
|
|
|
];
|