- Improved `/setup` page, show DB table `charset`/`collation` info - Upgraded "[_Peity_](http://benpickles.github.io/peity)" js lib `v3.2.1` → `v3.3.0`
20 lines
388 B
PHP
20 lines
388 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($f3);
|
|
|
|
// initiate cron-jobs
|
|
lib\Cron::instance();
|
|
|
|
$f3->run(); |