CustomerRewardsRESTAPI/Include/bootstrap.php

20 lines
712 B
PHP
Raw Permalink 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:\Programs\UniformServer\UniServerZ\www\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";
2024-04-15 11:38:59 -05:00
// include the base controller file
require_once PROJECT_ROOT_PATH . "/Controller/Api/BaseController.php";
// include the tests autoloader when in development
//require_once __DIR__ . '/../vendor/autoload.php';