NAME
SweetPea::Application - A full stack web framework for the rest of us.
VERSION
Version 0.025
SYNOPSIS
SweetPea::Application is a full-stack web application framework built atop of the SweetPea web framework. SweetPea::Application aims to provide all the functionality common to building complete and robust web applications via a suite of packages through a unified API.
# build a full-stack web application (from the cli)
sweetpea make -f
use SweetPea;
sweet->routes({
'/' => sub {
shift->forward('/way');
},
'/way' => sub {
shift->html('I am the way the truth and the light!');
}
})->run;
To Get Started, Review SweetPea::Cli::Documentation or SweetPea::Application::Documentation.
AUTHOR
Al Newkirk, <al.newkirk at awnstudio.com>
BUGS
Please report any bugs or feature requests to bug-sweetpea-application at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=SweetPea-Application. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc SweetPea::Application
You can also look for information at:
RT: CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=SweetPea-Application
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
COPYRIGHT & LICENSE
Copyright 2009 Al Newkirk.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.