From: Dimitar Petrov Date: Thu, 21 Feb 2013 08:44:56 +0000 (+0100) Subject: README tweaks X-Git-Tag: 5.90030~25 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=52e012fb34c38a6f2a70d75a96b76dcc9e8788df README tweaks --- diff --git a/README b/README deleted file mode 100644 index 1438432..0000000 --- a/README +++ /dev/null @@ -1,14 +0,0 @@ -Catalyst-Runtime -================ -This is the Runtime distribution for the Catalyst MVC framework. -For more information about Catalyst, write - -$ perldoc Catalyst - -at the command line, or visit http://www.catalystframework.org/. -You can also install Catalyst::Manual from CPAN for more -comprehensive information. - -If you are going to write your own Catalyst application, you will -need to install Catalyst::Devel. Afterwards run catalyst.pl -for more information about creating your first app. diff --git a/README.pod b/README.pod new file mode 100644 index 0000000..5fe4755 --- /dev/null +++ b/README.pod @@ -0,0 +1,41 @@ +=head1 Welcome to Catalyst + +This is the Runtime distribution for the L. + +For more information about Catalyst, write + + perldoc Catalyst + +at the command line, or visit http://www.catalystframework.org/. + +=head2 Getting Started + +1. Install Catalyst if you haven't yet: + + cpanm Catalyst + +2. Create a new catalyst application: + + catalyst.pl DemoApp + +3. Change the directory to the newly created directory and start the built-in developer server + + cd DemoApp; plackup -Ilib demoapp.psgi + +4. Go to http://localhost:5000 and you'll see the default welcome page. + +=head2 Resources + +You can also install L +from CPAN for more comprehensive information. + +If you are going to write your own Catalyst application, you will need to +install L. +Afterwards run I for more information about creating your first +app. + +=head2 Contributing + +If you would like to contribute to Catalyst, please +L on IRC, +or visit the L.