hydra/src/lib/Hydra.pm

58 lines
1.3 KiB
Perl
Raw Normal View History

2008-11-25 11:01:42 +00:00
package Hydra;
use strict;
use warnings;
2008-11-28 14:36:04 +00:00
use Hydra::Helper::Nix;
use Catalyst::Runtime '5.70';
use parent qw/Catalyst/;
use Catalyst qw/-Debug
ConfigLoader
Static::Simple
StackTrace
2008-11-26 19:48:04 +00:00
Authentication
Authorization::Roles
2008-11-26 19:48:04 +00:00
Session
Session::Store::FastMmap
Session::State::Cookie
/;
our $VERSION = '0.01';
2008-11-18 14:48:40 +00:00
__PACKAGE__->config(
2008-11-25 11:01:42 +00:00
name => 'Hydra',
2008-11-28 14:36:04 +00:00
default_view => "TT",
session => {
storage => getHydraPath . "/session_data"
},
authentication => {
default_realm => "dbic",
realms => {
dbic => {
credential => {
class => "Password",
password_field => "password",
password_type => "hashed",
password_hash_type => "SHA-1",
},
store => {
class => "DBIx::Class",
user_class => "DB::Users",
role_relation => "userroles",
role_field => "role",
},
},
},
},
'View::JSON' => {
expose_stash => qr/^json/,
},
'Plugin::Session' => {
expires => 3600 * 24 * 2,
},
2008-11-28 14:36:04 +00:00
);
__PACKAGE__->setup();
1;