Added Config file
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
namespace Config;
|
||||
|
||||
use CodeIgniter\Config\BaseConfig;
|
||||
|
||||
class ApiEndpoints extends BaseConfig
|
||||
{
|
||||
/**
|
||||
* --------------------------------------------------------------------------
|
||||
* Base Url
|
||||
* --------------------------------------------------------------------------
|
||||
*
|
||||
* WP Data Gateway endpoint base url
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $baseUrl = 'http://172.31.4.19:8000';
|
||||
|
||||
|
||||
/**
|
||||
* --------------------------------------------------------------------------
|
||||
* Client Credentials
|
||||
* --------------------------------------------------------------------------
|
||||
*
|
||||
* Client credentials
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $clientCredentials = [
|
||||
'username' => '',
|
||||
'password' => ''
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user