mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-29 15:36:07 +00:00
15 lines
158 B
PHP
15 lines
158 B
PHP
<?php
|
|
|
|
error_reporting(E_ALL ^ E_NOTICE);
|
|
|
|
require_once('bootstrap.php');
|
|
|
|
|
|
$app = new \Espo\Core\Application();
|
|
|
|
//$app->run();
|
|
|
|
$GLOBALS['app'] = $app;
|
|
|
|
|
|
?>
|