NAME
Catalyst::Engine::Server - Catalyst Server Engine
SYNOPSIS
A script using the Catalyst::Engine::Server module might look like:
#!/usr/bin/perl -w
BEGIN { $ENV{CATALYST_ENGINE} = 'Server' }
use strict;
use lib '/path/to/MyApp/lib';
use MyApp;
MyApp->run;
DESCRIPTION
This Catalyst engine provides a standalone server.
TODO
Make HTTP/1.1 optional.
SEE ALSO
Catalyst, Catalyst::Engine, Catalyst::Engine::Server::PreFork.
AUTHOR
Christian Hansen, ch@ngmedia.com
COPYRIGHT
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.