* Initial directory structure.

* First parts of boot process works.
This commit is contained in:
2009-08-15 19:53:21 +03:00
commit 6a7ad50a26
6 changed files with 172 additions and 0 deletions

21
public/dispatch.php Normal file
View File

@@ -0,0 +1,21 @@
<?php
/*
Dispatch Zynapse
- the first step
*/
# path to config directory
$config_path = dirname(dirname(__FILE__)).'/config';
// initial boot and environment setup
require_once($config_path.'/init/boot.php');
// initialize zynapse
Zynapse::init();
?>