Enhance documentation and improve API configuration
- 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.
This commit is contained in:
@@ -2,11 +2,11 @@
|
||||
|
||||
return [
|
||||
|
||||
'base_url' => env('LOGISTICS_API_BASE_URL'),
|
||||
'base_url' => env('LOGISTICS_API_BASE_URL', 'http://tse-10-test.esi.local'),
|
||||
|
||||
'api_key' => env('LOGISTICS_API_KEY'),
|
||||
'api_key' => env('LOGISTICS_API_KEY', 'YOUR_API_KEY'),
|
||||
|
||||
'folder' => env('LOGISTICS_API_FOLDER'),
|
||||
'folder' => env('LOGISTICS_API_FOLDER', 'esigescom'),
|
||||
|
||||
'timeout' => (int) env('LOGISTICS_API_TIMEOUT', 30),
|
||||
|
||||
|
||||
Reference in New Issue
Block a user