mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-15 02:07:56 -04:00
21 lines
704 B
PHP
21 lines
704 B
PHP
<?php
|
|
|
|
return [
|
|
'name' => 'StudioPlus',
|
|
|
|
// GOOGLE CLOUD PLATFORM STORAGE
|
|
'google_api_endpoint' => env('GOOGLE_CLOUD_PLATFORM_API_ENDPOINT', 'https://storage.googleapis.com'),
|
|
'bucket_name' => env('GOOGLE_CLOUD_PLATFORM_BUCKET_NAME', 'wticreatorhub'),
|
|
|
|
// AMAZON PRODUCT REVIEWS
|
|
'rapid_api_url' => env('RAPID_API_URL'),
|
|
'rapid_api_key' => env('RAPID_API_KEY'),
|
|
'rapid_api_host' => env('RAPID_API_HOST'),
|
|
|
|
'rainforest_api_url' => env('RAINFOREST_API_URL'),
|
|
'rainforest_api_key' => env('RAINFOREST_API_KEY'),
|
|
'rainforest_amazon_domain' => env('RAINFOREST_AMAZON_DOMAIN'),
|
|
|
|
'amazon_active_api' => env('AMAZON_ACTIVE_API', 'RAINFOREST')
|
|
];
|