20 lines
596 B
PHP
20 lines
596 B
PHP
<?php
|
|
namespace Ryouko;
|
|
|
|
use Index\Autoloader;
|
|
use Index\Environment;
|
|
//use Index\Data\MariaDB\MariaDBBackend;
|
|
//use Index\Data\MariaDB\MariaDBConnectionInfo;
|
|
|
|
define('RYK_STARTUP', microtime(true));
|
|
define('RYK_ROOT', __DIR__);
|
|
define('RYK_DEBUG', is_file(RYK_ROOT . '/.debug'));
|
|
define('RYK_DIR_SRC', RYK_ROOT . '/src');
|
|
define('RYK_DIR_LIB', RYK_ROOT . '/lib');
|
|
define('RYK_DIR_PUB', RYK_ROOT . '/public');
|
|
//define('RYK_DIR_CFG', RYK_ROOT . '/config');
|
|
|
|
require_once RYK_DIR_LIB . '/index/index.php';
|
|
|
|
//Autoloader::addNamespace(__NAMESPACE__, RYK_DIR_SRC);
|
|
Environment::setDebug(RYK_DEBUG);
|