15d0799720c29e6014a006bec9badba2160c9b7f
[catagits/Catalyst-Devel.git] / share / lib / MyApp.pm.tt
1 package [% name %];
2 use Moose;
3 use namespace::autoclean;
4
5 use Catalyst::Runtime 5.80;
6
7 # Set flags and add plugins for the application.
8 #
9 # Note that ORDERING IS IMPORTANT here as plugins are initialized in order,
10 # therefore you almost certainly want to keep ConfigLoader at the head of the
11 # list if you're using it.
12 #
13 #         -Debug: activates the debug mode for very useful log messages
14 #   ConfigLoader: will load the configuration from a Config::General file in the
15 #                 application's home directory
16 # Static::Simple: will serve static files from the application's root
17 #                 directory
18
19 use Catalyst qw/
20     -Debug
21     ConfigLoader
22     Static::Simple
23 /;
24
25 extends 'Catalyst';
26
27 our $VERSION = '0.01';
28
29 # Configure the application.
30 #
31 # Note that settings in [% appprefix %].conf (or other external
32 # configuration file that you set up manually) take precedence
33 # over this when using ConfigLoader. Thus configuration
34 # details given here can function as a default configuration,
35 # with an external configuration file acting as an override for
36 # local deployment.
37
38 __PACKAGE__->config(
39     name => '[% name %]',
40     # Disable deprecated behavior needed by old applications
41     disable_component_resolution_regex_fallback => 1,
42     enable_catalyst_header => 1, # Send X-Catalyst header
43 );
44
45 # Start the application
46 __PACKAGE__->setup();
47
48 =encoding utf8
49
50 =head1 NAME
51
52 [% name %] - Catalyst based application
53
54 =head1 SYNOPSIS
55
56     script/[% appprefix %]_server.pl
57
58 =head1 DESCRIPTION
59
60 [enter your description here]
61
62 =head1 SEE ALSO
63
64 L<[% rootname %]>, L<Catalyst>
65
66 =head1 AUTHOR
67
68 [% author %]
69
70 =head1 LICENSE
71
72 This library is free software. You can redistribute it and/or modify
73 it under the same terms as Perl itself.
74
75 =cut
76
77 1;