Removed execution flag from non-exe files
[Fumo.git] / lib / Fumo.pm
blobf80e6c98988c3e8d95f6febe76e611942f64db9e
1 package Fumo;
3 use strict;
4 use warnings;
6 use Catalyst::Runtime '5.70';
8 # Set flags and add plugins for the application
10 # -Debug: activates the debug mode for very useful log messages
11 # ConfigLoader: will load the configuration from a YAML file in the
12 # application's home directory
13 # Static::Simple: will serve static files from the application's root
14 # directory
16 use Catalyst qw/ConfigLoader Static::Simple/;
18 our $VERSION = '0.01';
20 # Configure the application.
22 # Note that settings in Fumo.yml (or other external
23 # configuration file that you set up manually) take precedence
24 # over this when using ConfigLoader. Thus configuration
25 # details given here can function as a default configuration,
26 # with a external configuration file acting as an override for
27 # local deployment.
29 __PACKAGE__->config( name => 'Fumo' );
31 # Start the application
32 __PACKAGE__->setup;
35 =head1 NAME
37 Fumo - Catalyst based application
39 =head1 SYNOPSIS
41 script/fumo_server.pl
43 =head1 DESCRIPTION
45 [enter your description here]
47 =head1 SEE ALSO
49 L<Fumo::Controller::Root>, L<Catalyst>
51 =head1 AUTHOR
53 Philip Jackson,,,
55 =head1 LICENSE
57 This library is free software, you can redistribute it and/or modify
58 it under the same terms as Perl itself.
60 =cut