hedera-web/environ.php

15 lines
294 B
PHP
Raw Normal View History

<?php
2016-10-11 14:45:10 +00:00
require_once (__DIR__.'/../php-vn-lib/environ.php');
2016-09-24 14:32:31 +00:00
set_include_path (__DIR__.PATH_SEPARATOR.get_include_path ());
$vnAutoloadMap['vn/web'] = __DIR__.'/web';
2016-10-11 14:45:10 +00:00
const _DEV_MODE = TRUE;
const _CONFIG_DIR = __DIR__.'/../../.config';
const _LOG_DIR = '/tmp';
2016-07-22 20:00:27 +00:00
const _DATA_DIR = '/tmp';
?>