2015-01-23 13:09:30 +00:00
|
|
|
<?php
|
|
|
|
|
2016-07-22 20:00:27 +00:00
|
|
|
require_once (__DIR__.'/../php-vn-lib/configure.php');
|
2015-01-23 13:09:30 +00:00
|
|
|
|
2016-09-24 14:32:31 +00:00
|
|
|
set_include_path (__DIR__.PATH_SEPARATOR.get_include_path ());
|
|
|
|
|
|
|
|
$vnAutoloadMap['vn/web'] = __DIR__.'/web';
|
2015-01-23 13:09:30 +00:00
|
|
|
|
2016-08-22 10:41:05 +00:00
|
|
|
const _DEBUG_MODE = TRUE;
|
2016-05-02 13:05:49 +00:00
|
|
|
const _CONFIG_DIR = '/home/juan/.config';
|
2015-01-23 13:09:30 +00:00
|
|
|
const _LOG_DIR = '/tmp';
|
2016-07-22 20:00:27 +00:00
|
|
|
const _DATA_DIR = '/tmp';
|
2015-01-23 13:09:30 +00:00
|
|
|
|
|
|
|
?>
|