34 lines
848 B
PHP
Executable file
34 lines
848 B
PHP
Executable file
<?php
|
|
|
|
use Venom\Config;
|
|
use Venom\Venom;
|
|
|
|
require_once '../vendor/autoload.php';
|
|
if (!file_exists('../config.inc.php')) {
|
|
copy('../config.base.php', '../config.inc.php');
|
|
echo 'Please change Config @ config.inc.php';
|
|
exit();
|
|
}
|
|
if (!file_exists('../module.inc.php')) {
|
|
copy('../module.base.php', '../module.inc.php');
|
|
echo 'Please change Modules @ module.inc.php';
|
|
exit();
|
|
}
|
|
require_once '../config.inc.php';
|
|
require_once '../module.inc.php';
|
|
require_once '../lang.php';
|
|
|
|
$config = Config::getInstance();
|
|
if ($config->isMaintenance()) {
|
|
echo 'Currently not available';
|
|
exit;
|
|
}
|
|
//if devMode is on show all errors!
|
|
if ($config->isDevMode()) {
|
|
error_reporting(E_ALL);
|
|
ini_set('error_reporting', E_ALL);
|
|
}
|
|
$venom = new Venom();
|
|
$venom->initModules($modules);
|
|
$venom->initControllers($controllers);
|
|
$venom->run(); |