diff --git a/ui/public/index.php b/ui/public/index.php index e6d2557..4ccf8a4 100644 --- a/ui/public/index.php +++ b/ui/public/index.php @@ -1,7 +1,12 @@ run(); +try { + require_once implode(DIRECTORY_SEPARATOR, [ + dirname(__DIR__), + 'setup', + 'app.php' + ]); + $app->run(); +} catch (Error | Exception $e) { + error_log($e); + throw $e; +}