Setup ready to use CodeIgniter framework with:
Set up application/config/config.php and application/config/database.php for your needs.
Load RedBean library adding it on autoload.php, example:
$autoload['libraries'] = array('rb');
Or load RedBean library in any controller, example:
$this->load->library('rb');
You can use RedBean API in your controller:
R::debug(TRUE);
Examples:
// New bean
$post = R::dispense('post');
// Load bean by id
$post = R::load('post', 1);
// Find all beans
$posts = R::find('post');
// Find beans
$posts = R::find('post', 'published = 1');
// Save bean
R::store($post);
With HMVC you can build your application modulair.
You can find the standard welcome page in:
/application/modules/welcome/controllers/welcome.php