oms-OnlineResourceWatcher/app/web/Install/index.php
2022-09-26 23:17:08 +02:00

29 lines
534 B
PHP
Executable File

<?php
/**
* Karaka
*
* PHP Version 8.1
*
* @package Install
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://karaka.app
*/
declare(strict_types=1);
// @codeCoverageIgnoreStart
\ob_start();
//<editor-fold desc="Require/Include">
require_once __DIR__ . '/../phpOMS/Autoloader.php';
$config = require_once __DIR__ . '/../config.php';
//</editor-fold>
$App = new \Install\WebApplication($config);
if (\ob_get_level() > 0) {
\ob_end_flush();
}
// @codeCoverageIgnoreEnd