Added Dots Platform API Configuration.
This commit is contained in:
@@ -56,3 +56,9 @@ VITE_PUSHER_HOST="${PUSHER_HOST}"
|
||||
VITE_PUSHER_PORT="${PUSHER_PORT}"
|
||||
VITE_PUSHER_SCHEME="${PUSHER_SCHEME}"
|
||||
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
|
||||
|
||||
DOTS_BASE_URL=https://clients-api.dots.live
|
||||
DOTS_API_TOKEN=
|
||||
DOTS_API_ACCOUNT_TOKEN=
|
||||
DOTS_API_AUTH_TOKEN=
|
||||
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Dots Platform API Configuration
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This file is for storing the credentials for the Dots Platform API.
|
||||
| The file provides information about the keys to access the API.
|
||||
|
|
||||
*/
|
||||
|
||||
'base_url' => env('DOTS_BASE_URL'),
|
||||
|
||||
'api_token' => env('DOTS_API_TOKEN'),
|
||||
|
||||
'api_account_token' => env('DOTS_API_ACCOUNT_TOKEN'),
|
||||
|
||||
'api_auth_token' => env('DOTS_API_AUTH_TOKEN'),
|
||||
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user