> On Sep 14, 2011, at 9:57 AM, Sterling Hanenkamp wrote: >> If you don't need Apache or whatever helping you out for the moment, you >> could use Starman, this assumes you're using the latest Catalyst with full >> Plack support. Once Starman is installed, it should be as easy as: >> >> starman myapp.psgi >
On Wed, Sep 14, 2011 at 11:03 AM, Jay Hannah <[email protected]> wrote: > Yup. Just start here: > > http://search.cpan.org/dist/Catalyst-Manual/lib/Catalyst/Manual.pm > > Catalyst ships with a great development server. Once you've developed your > application there are lots of deployment options (Starman and friends). This is NOT a better solution. If you cannot install or use Starman and you already have an Apache instance running, you can run the Catalyst controller through a CGI. Not something I would want to use in a production environment, but I did have to use it before due to the many restrictions of the server (a few years ago). Look in the script directory in your Catalyst application directory. There should be a myapp_cgi.pl script (where myapp is the name of of your Catalyst application). You may need or want to copy that script to a cgi-bin directory. If so, remember to add the Catalyst application's directory to Perl's library path: e.g. use lib '/path/to/MyApp/lib'; I used this a few years ago, so things have likely changed. YMMV _______________________________________________ kc mailing list [email protected] http://mail.pm.org/mailman/listinfo/kc
