Blog page added

This commit is contained in:
Olu Amey
2021-09-19 16:23:46 -04:00
parent ffcf8593b5
commit 9420c6c1af
8 changed files with 5479 additions and 5300 deletions
+34
View File
@@ -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' => ''
];
}