]> Dogcows Code - chaz/chatty/blob - lib/Chatty.pm
fix some inaccuracies in the documentation
[chaz/chatty] / lib / Chatty.pm
1 package Chatty;
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 ConfigLoader
21 StackTrace
22 Static::Simple
23 Authentication
24 Session
25 Session::Store::FastMmap
26 Session::State::Cookie
27 Unicode::Encoding
28 /;
29
30 extends 'Catalyst';
31
32 our $VERSION = '0.01';
33
34 # Configure the application.
35 #
36 # Note that settings in chatty.conf (or other external
37 # configuration file that you set up manually) take precedence
38 # over this when using ConfigLoader. Thus configuration
39 # details given here can function as a default configuration,
40 # with an external configuration file acting as an override for
41 # local deployment.
42
43 __PACKAGE__->config(
44 name => 'Chatty',
45 using_frontend_proxy => 1,
46 # Disable deprecated behavior needed by old applications
47 disable_component_resolution_regex_fallback => 1,
48 'Plugin::Authentication' => {
49 default => {
50 class => 'SimpleDB',
51 user_model => 'DB::Account',
52 password_type => 'clear',
53 },
54 },
55 'Plugin::Session' => {
56 flash_to_stash => 1,
57 },
58 default_view => 'HTML',
59 'View::JSON' => {
60 expose_stash => 'json',
61 },
62 );
63
64 # Start the application
65 __PACKAGE__->setup();
66
67
68 =head1 NAME
69
70 Chatty - Catalyst based application
71
72 =head1 SYNOPSIS
73
74 script/chatty_server.pl
75
76 =head1 DESCRIPTION
77
78 [enter your description here]
79
80 =head1 SEE ALSO
81
82 L<Chatty::Controller::Root>, L<Catalyst>
83
84 =head1 AUTHOR
85
86 Charles McGarvey
87
88 =head1 LICENSE
89
90 This library is free software. You can redistribute it and/or modify
91 it under the same terms as Perl itself.
92
93 =cut
94
95 1;
This page took 0.034469 seconds and 5 git commands to generate.