2015-01-23 13:09:30 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Vn\Hedera;
|
|
|
|
|
|
|
|
require_once (__DIR__.'/../php-vn-web/configure.php');
|
2015-01-31 01:05:12 +00:00
|
|
|
require_once (__DIR__.'/../vn-image/configure.php');
|
2015-01-23 13:09:30 +00:00
|
|
|
|
|
|
|
set_include_path
|
|
|
|
(
|
|
|
|
get_include_path ()
|
2015-08-20 11:22:36 +00:00
|
|
|
.PATH_SEPARATOR.__DIR__.'/lib'
|
2015-01-23 13:09:30 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
const _DEVELOPER_MODE = TRUE;
|
|
|
|
const _CONFIG_DIR = '/home/juan/.config/hedera-web';
|
|
|
|
const _LOG_DIR = '/tmp';
|
|
|
|
|
|
|
|
?>
|