X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FIntro.pod;h=560274d47fbf7486db847b7c0e9e540bf7e9552a;hb=6f4e1683d466d0123cc7507b29a55b474ddca594;hp=15f6ee8875a783f7061f4322bc0ffdd236b3be4c;hpb=3cb1db8ca312e1a9c16cbf31543858dd98653ad1;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Manual/Intro.pod b/lib/Catalyst/Manual/Intro.pod index 15f6ee8..560274d 100644 --- a/lib/Catalyst/Manual/Intro.pod +++ b/lib/Catalyst/Manual/Intro.pod @@ -71,6 +71,8 @@ Use L or L. The best part is that Catalyst implements all this flexibility in a very simple way. +=over 4 + =item * B Components interoperate very smoothly. For example, Catalyst automatically makes a L object available in every component. Via the context, you can access the request object, share data between components, and control the flow of your application. Building a Catalyst application feels a lot like snapping together toy building blocks, and everything just works. @@ -91,6 +93,8 @@ Catalyst comes with a builtin, lightweight http server and test framework, makin Catalyst provides helper scripts to quickly generate running starter code for components and unit tests. +=back + =head2 Quickstart Here's how to install Catalyst and get a simple application up and running, using the helper scripts described above. @@ -554,20 +558,12 @@ Start your application on the command line... script/server.pl -or - - 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: script/test.pl http://localhost/ -or - - perl -I/home/joeuser/myapp/lib -MCatalyst::Test=MyApp -e1 http://localhost/ - Have fun! =head1 SUPPORT