35 lines
707 B
PHP
35 lines
707 B
PHP
<?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' => ''
|
|
];
|
|
}
|