
Catalyst::Engine::Mojo - Mojo for Catalyst (ALPHA!)

version 0.001_02

example startup script:
#!/usr/bin/perl
use strict;
use warnings;
$ENV{MOJO_APP} = 'MojoX::Catalyst';
$ENV{MOJO_CATALYST_APP} = 'CatTest';
$ENV{CATALYST_ENGINE} = 'Mojo';
use Mojo::Script::Daemon;
my $daemon = Mojo::Script::Daemon->new;
$daemon->run(@ARGV);

Experimental and alpha Mojo engine for Catalyst.
There are lots of bugs and unimplemented things.
The API and even module names are likely to change.
DO NOT USE FOR PRODUCTION.


Uwe Voelker, <uwe.voelker@gmx.de>