hedera-web/configure.php

17 lines
255 B
PHP
Raw Normal View History

<?php
2016-07-22 20:00:27 +00:00
require_once (__DIR__.'/../php-vn-lib/configure.php');
set_include_path
(
get_include_path ()
2016-05-02 13:05:49 +00:00
.PATH_SEPARATOR.__DIR__
);
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';
const _LOG_DIR = '/tmp';
2016-07-22 20:00:27 +00:00
const _DATA_DIR = '/tmp';
?>