Unicode - fix syntax error
[catagits/Catalyst-Devel.git] / share / lib / MyApp.pm.tt
CommitLineData
239b5fc0 1package [% name %];
8662edf6 2use Moose;
3use namespace::autoclean;
239b5fc0 4
5use Catalyst::Runtime 5.80;
6
e1893b6a 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.
239b5fc0 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
0c34c8b8 19use Catalyst qw/
7e6d9ba3 20 -Debug
0c34c8b8 21 ConfigLoader
22 Static::Simple
23/;
8662edf6 24
25extends 'Catalyst';
26
239b5fc0 27our $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
0c34c8b8 38__PACKAGE__->config(
7e6d9ba3 39 name => '[% name %]',
40 # Disable deprecated behavior needed by old applications
41 disable_component_resolution_regex_fallback => 1,
51b186e7 42 enable_catalyst_header => 1, # Send X-Catalyst header
962244bd 43 encoding => 'UTF-8', # Setup request decoding and response encoding
0c34c8b8 44);
239b5fc0 45
46# Start the application
47__PACKAGE__->setup();
48
3f58db98 49=encoding utf8
239b5fc0 50
51=head1 NAME
52
53[% name %] - Catalyst based application
54
55=head1 SYNOPSIS
56
57 script/[% appprefix %]_server.pl
58
59=head1 DESCRIPTION
60
61[enter your description here]
62
63=head1 SEE ALSO
64
65L<[% rootname %]>, L<Catalyst>
66
67=head1 AUTHOR
68
69[% author %]
70
71=head1 LICENSE
72
73This library is free software. You can redistribute it and/or modify
74it under the same terms as Perl itself.
75
76=cut
77
781;