43 lines
1.2 KiB
PHP
43 lines
1.2 KiB
PHP
<?php
|
|
namespace Awaki;
|
|
|
|
use Index\Environment;
|
|
use Index\Data\ConnectionFailedException;
|
|
use Index\Data\DbTools;
|
|
use Syokuhou\SharpConfig;
|
|
|
|
define('AWK_STARTUP', microtime(true));
|
|
define('AWK_ROOT', __DIR__);
|
|
define('AWK_DEBUG', is_file(AWK_ROOT . '/.debug'));
|
|
define('AWK_DIR_SRC', AWK_ROOT . '/src');
|
|
define('AWK_DIR_PUB', AWK_ROOT . '/public');
|
|
define('AWK_DIR_CFG', AWK_ROOT . '/config');
|
|
define('AWK_DIR_DBM', AWK_ROOT . '/database');
|
|
|
|
require_once AWK_ROOT . '/vendor/autoload.php';
|
|
|
|
Environment::setDebug(AWK_DEBUG);
|
|
|
|
$config = SharpConfig::fromFile(AWK_DIR_CFG . '/config.cfg');
|
|
|
|
if($config->hasValues('sentry:dsn'))
|
|
(function($cfg) {
|
|
\Sentry\init([
|
|
'dsn' => $cfg->getString('dsn'),
|
|
'traces_sample_rate' => $cfg->getFloat('tracesRate', 0.2),
|
|
'profiles_sample_rate' => $cfg->getFloat('profilesRate', 0.2),
|
|
]);
|
|
|
|
set_exception_handler(function(\Throwable $ex) {
|
|
\Sentry\captureException($ex);
|
|
});
|
|
})($config->scopeTo('sentry'));
|
|
|
|
try {
|
|
$db = DbTools::create($config->getString('dsn'));
|
|
} catch(ConnectionFailedException $ex) {
|
|
echo '<h3>Unable to connect to database</h3>';
|
|
die($ex->getMessage());
|
|
}
|
|
|
|
$awk = new AwakiContext($db, $config->scopeTo('urls'));
|