X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FIntro.pod;h=15f6ee8875a783f7061f4322bc0ffdd236b3be4c;hb=3cb1db8ca312e1a9c16cbf31543858dd98653ad1;hp=c78366fe5be180b422f355830f28ce3e30418cb1;hpb=4a6895ce26f166f3b58aee8c691fce662f835865;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Manual/Intro.pod b/lib/Catalyst/Manual/Intro.pod index c78366f..15f6ee8 100644 --- a/lib/Catalyst/Manual/Intro.pod +++ b/lib/Catalyst/Manual/Intro.pod @@ -101,13 +101,13 @@ Here's how to install Catalyst and get a simple application up and running, usin =head3 Setup - $ perl /path/to/catalyst My::App + $ catalyst.pl My::App $ cd My-App - $ perl bin/create controller My::Controller + $ script/create.pl controller My::Controller =head3 Run - $ perl bin/server + $ script/server.pl Now visit these locations with your favorite browser or user agent to see Catalyst in action: @@ -552,24 +552,35 @@ Catalyst has a built in http server for testing! (Later, you can easily use a mo Start your application on the command line... - perl -I/home/joeuser/myapp/lib -MCatalyst::Test=MyApp -e1 3000 + script/server.pl or - perl bin/server + perl -I/home/joeuser/myapp/lib -MCatalyst::Test=MyApp -e1 3000 ...then visit http://localhost:3000/ in a browser to view the output. You can also do it all from the command line: - perl -I/home/joeuser/myapp/lib -MCatalyst::Test=MyApp -e1 http://localhost/ + script/test.pl http://localhost/ or - perl bin/test http://localhost/ + perl -I/home/joeuser/myapp/lib -MCatalyst::Test=MyApp -e1 http://localhost/ Have fun! +=head1 SUPPORT + +IRC: + + Join #catalyst on irc.perl.org. + +Mailing-Lists: + + http://lists.rawmode.org/mailman/listinfo/catalyst + http://lists.rawmode.org/mailman/listinfo/catalyst-dev + =head1 AUTHOR Sebastian Riedel, C and David Naughton, C