NAME
dancer
DESCRIPTION
Helper script for providing a bootstraping method for creating new Dancer applications.
USAGE
dancer [options] -a <appname>
- -h, --help : print what you are currently reading =item -a, --application : the name of your application =item -p, --path : the path where to create your application (current directory if not specified)
EXAMPLE
Here is an application create with dancer:
$ dancer -a mywebapp
+ [D] mywebapp
+ [F] mywebapp/config.yml
+ [D] mywebapp/views
+ [D] mywebapp/views/layouts
+ [F] mywebapp/views/layouts/main.tt
+ [F] mywebapp/views/index.tt
+ [D] mywebapp/environments
+ [F] mywebapp/environments/production.yml
+ [F] mywebapp/environments/development.yml
+ [F] mywebapp/mywebapp.pm
+ [F] mywebapp/mywebapp.pl
+ [F] mywebapp/app.psgi
The application is ready to serve:
$ cd mywebapp
$ ./mywebapp.pl
>> Listening on 127.0.0.1:3000
== Entering the development dance floor ...
AUTHOR
This script has been written by Sebastien Deseille <sebastien.deseille@gmail.com> and Alexis Sukrieh <sukria@cpan.org>.
SOURCE CODE
See Dancer for more information.
LICENSE
This module is free software and is published under the same terms as Perl itself.