
Squatting::On::CGI - if all else fails, you can still deploy on CGI

Create an app.cgi
use App 'On::CGI';
my $q = CGI->new;
App->init;
App->relocate('/cgi-bin/app.cgi');
App->cgi($q);

If all else fails, you can still deploy on good old CGI.

Give the cgi method a CGI object, and it will send the apps output to STDOUT.