13 lines
303 B
PHP
13 lines
303 B
PHP
<?php
|
|
$app = include_once implode(DIRECTORY_SEPARATOR, [
|
|
dirname(__FILE__, 2),
|
|
'setup',
|
|
'app.php'
|
|
]);
|
|
try {
|
|
$app->run();
|
|
} catch (Error | Exception $e) {
|
|
error_log($e);
|
|
echo json_encode(['message' => 'There was an error', 'error' => $e->getMessage(), 'errorCode' => $e->getCode()]);
|
|
}
|