CustomerRewardsRESTAPI/Include/bootstrap.php

20 lines
844 B
PHP
Raw Normal View History

2024-04-15 11:38:59 -05:00
<?php
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Scripting/EmptyPHP.php to edit this template
*/
define("PROJECT_ROOT_PATH", __DIR__ . "/../");
define('PD', 'D:\DEV\Git Repository\CustomerRewardsRESTAPI');
2024-05-16 19:55:18 -05:00
//define('PD', 'C:\DEV\UniServerZ\www\CustomerRewardsRESTAPI');
2024-04-15 11:38:59 -05:00
// include main configuration file
require_once PROJECT_ROOT_PATH . "/include/config.php";
// include the base controller file
require_once PROJECT_ROOT_PATH . "/Controller/Api/BaseController.php";
// include the use model file
2024-05-13 15:12:31 -05:00
//require_once PROJECT_ROOT_PATH . "/Model/CustomerModel.php";
//require_once PROJECT_ROOT_PATH . "/Model/ImageModel.php";
// include the tests autoloader when in development
//require_once __DIR__ . '/../vendor/autoload.php';