Slide 64
Slide 64 text
ERIKREAGAN • EECI
GETTING SET UP
if ( ! defined('ENV'))
{
switch ($_SERVER['HTTP_HOST']) {
case 'focuslabllc.com' :
define('ENV', 'prod');
define('ENV_FULL', 'Production');
define('ENV_DEBUG', FALSE);
break;
case 'ohsnap.focuslabllc.com' :
define('ENV', 'stage');
define('ENV_FULL', 'Staging');
define('ENV_DEBUG', FALSE);
break;
default :
define('ENV', 'local');
define('ENV_FULL', 'Local');
define('ENV_DEBUG', TRUE);
break;
}
}
60
config.env.php sample