<?php
ini_set('display_errors', '0');
error_reporting(0);
session_start();
define('ROOT_DIR', realpath(dirname(__FILE__)) .'/');
include 'system/Engine.php';

require_once '/home/admin/bootstrap/bootstrap-local.php';
new BootstrapLocal('./vendor/','/home/admin/bootstrap/',true);

require __DIR__ . '/vendor/autoload.php';

$engine=new Engine;
$engine->run();