mirror of
https://github.com/jimeh/zynapse.git
synced 2026-02-19 07:06:39 +00:00
25 lines
393 B
PHP
25 lines
393 B
PHP
<?php
|
|
/*
|
|
|
|
Dispatch Zynapse
|
|
- the first step
|
|
|
|
*/
|
|
|
|
|
|
# path to config directory
|
|
$config_path = dirname(dirname(__FILE__))."/config";
|
|
|
|
|
|
$start = microtime(true);
|
|
|
|
// initial boot and environment setup
|
|
require_once($config_path."/init/boot.php");
|
|
|
|
|
|
// initialize zynapse
|
|
Zynapse::init();
|
|
|
|
echo "<br />\n<br />\nboot time: ".number_format(microtime(true) - $start, 6)." seconds<br />\n";
|
|
|
|
?>
|