public
Description: PHP Lifestream Aggregator, built with Zend Framework
Homepage: http://blog.johannilsson.me/tagged/phplifestream
Clone URL: git://github.com/johannilsson/phplifestream.git
phplifestream / phplifestream-conf.php.example
100644 12 lines (10 sloc) 0.32 kb
1
2
3
4
5
6
7
8
9
10
11
12
<?php
$includePath = array(
// The path to zend framework
    '/path/to/zend/framework',
    get_include_path(),
);
set_include_path(implode(PATH_SEPARATOR, $includePath));
// Define environment could be either development or production
// If not set it defaults to development
define('ENVIRONMENT', 'development');