'development', * 'test.*' => 'staging', * ':all' => 'production', * * passing an string: * Will set the environment directly example: * return $_SERVER[ 'CCF_ENV' ] * */ return array( /* * probably an local environment for example: * localhost * local.example.com */ 'local*' => 'development', /* * probably an testing environment for example: * test.example.com */ 'test.*' => 'test', /* * everything else for example: * www.example.com * clancats.com */ ':all' => 'production', );