mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 06:56:05 +00:00
15 lines
205 B
PHP
15 lines
205 B
PHP
<?php
|
|
|
|
include "bootstrap.php";
|
|
|
|
$app = new \Espo\Core\Application();
|
|
|
|
$app->isInstalled();
|
|
|
|
if (empty($_GET['entryPoint'])) {
|
|
include "main.html";
|
|
} else {
|
|
$app->runEntryPoint($_GET['entryPoint']);
|
|
}
|
|
|