You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
287 B
PHP
15 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"]);
|
|
|