This repository has been archived on 2024-03-08. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
website-old/public/index.php
2022-10-04 00:05:13 +02:00

10 lines
No EOL
286 B
PHP

<?php
$exp = explode(DIRECTORY_SEPARATOR, getcwd());
array_pop($exp);
define("ROOT", realpath(implode(DIRECTORY_SEPARATOR, $exp)));
require_once ROOT . '/vendor/autoload.php';
require_once ROOT . '/storage/framework/helpers.php';
$app = new \framework\App();
$app->configureRouting();