- enable "dynamic token" in *.ini files (variables) - improved map sync behaviour: Force map changes to be send to server when a clients "unloads/reloads" a tab. - fixed Js build bug in Firefox. "js-uglify" no longer crashes FF when Dev-Tools are open - enabled "js-hint" in Js build process.
23 lines
442 B
PHP
23 lines
442 B
PHP
<?php
|
|
session_name('pathfinder_session');
|
|
|
|
$composerAutoloader = 'vendor/autoload.php';
|
|
if(file_exists($composerAutoloader)){
|
|
require_once($composerAutoloader);
|
|
}
|
|
|
|
$f3 = require_once('app/lib/base.php');
|
|
|
|
// load main config
|
|
$f3->config('app/config.ini', true);
|
|
|
|
// load environment dependent config
|
|
lib\Config::instance();
|
|
|
|
// initiate CCP API Client (ESI)
|
|
lib\CcpClient::instance();
|
|
|
|
// initiate cron-jobs
|
|
Cron::instance();
|
|
|
|
$f3->run(); |