Akelos Framework v1 forum archive. This forum is no longer maintained. To report bugs please visit https://github.com/akelos/akelos/issues
    • CommentAuthormetkelb
     
    When i finish developing my application and wish to put my application on a live server , what do i do to make my application use the regular database instead of _dev?? at the moment only the booklink_dev database is being used!!

    Is there a transition from development to production??
    • CommentAuthorGKSR
     
    In config/config.php,

    // Current environment. Options are: development, testing and production
    defined('AK_ENVIRONMENT') ? null : define('AK_ENVIRONMENT', 'production');
    • CommentAuthormetkelb
     
    thnx