This is really all that’s needed in the index.php file to get a Camber application running

<?php
    require('autoload.php');
 
    $app = new My_Application();
    $controller = new My_Controller($app);
    $resource = $controller->getResource();
    $response = $resource->run();
    $response->send();
?>

See also: Application, Controller, Resource, VirtualHost Container