I'm creating my first app using CIBonfire and i'm ready to push it to production, but i'm not sure how to change the mode from development to production so that it does not show the profiler stuff in the footer.
I was not able to find it in any of the settings menus or in the documentation. Any help is appreciated.
In your index.php
file in your CI-Bonfire. you can find this spot here, just change the define('ENVIRONMENT', 'development')
into define('ENVIRONMENT', 'production')
* You can load different configurations depending on your
* current environment. Setting the environment also influences
* things like logging and error reporting.
*
* This can be set to anything, but default usage is:
*
* development
* testing
* production
*
* NOTE: If you change these, also change the error_reporting() code below
*
*/
define('ENVIRONMENT', 'production');