| Bracket documentation | Contained in the Bracket distribution. |
Bracket - College Basketball Tournament Bracket Web Application
Run your own bracket software. Simple, effective and ad free.
College Basketball Tournament Bracket Web application using the Catalyst framework. Deploy an instance of this bracket software to run your own bracket system. It requires a data store such as MySQL, PostgreSQL or SQLite.
Simple admin interface to build the perfect bracket as the tournament unfolds. Player brackets are compared to the perfect bracket for scoring purposes.
Mateu X. Hunter 2008-2010 hunter@missoula.org
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
Mateu X. Hunter 2008
* Currently only supports one group of players. * If you want to give more scoring weight to lower seeded wins you have to edit the lower_seed column of the game table.
| Bracket documentation | Contained in the Bracket distribution. |
package Bracket; use Moose; our $VERSION = '1.04'; use Catalyst::Runtime '5.80'; use Catalyst qw/ ConfigLoader Static::Simple Authentication Session Session::Store::DBIC Session::State::Cookie /; extends 'Catalyst'; __PACKAGE__->config( authentication => { default_realm => 'members', realms => { members => { credential => { class => 'Password', password_field => 'password', password_type => 'self_check', }, store => { class => 'DBIx::Class', user_model => 'DBIC::Player', role_relation => 'roles', role_field => 'role', use_userdata_from_session => 1, }, }, } } ); # Session::Store __PACKAGE__->config( 'Plugin::Session' => { dbic_class => 'DBIC::Session', expires => 604800, cookie_expires => 1814400, }, ); # Start the application __PACKAGE__->setup;
1;