web/src/bootstrap.php
2016-04-03 15:10:16 +02:00

14 lines
287 B
PHP

<?php
$basedir = realpath(__DIR__ . '/../');
# All calls are now relative to the root directory
chdir($basedir);
include $basedir . '/vendor/autoload.php';
$core = new \Eater\Glim\Core();
$core->startTimer(["total"]);
$core->boot($basedir);
$core->run();
$core->endTimer(["total"]);