index.php 218 B

123456
  1. <?php
  2. define('DS', DIRECTORY_SEPARATOR);
  3. define('ROOT', __DIR__ . DS . 'app' . DS);
  4. $config = include ROOT . 'config/config.php';
  5. require ROOT . './../vendor/autoload.php';
  6. \Ubiquity\controllers\Startup::run($config);