Get everything actually working with this in place in my public_html directory
[catagits/Gitalist.git] / lib / Gitalist.pm
CommitLineData
89de6a33 1package Gitalist;
42fe5d11 2use Moose;
3use namespace::autoclean;
89de6a33 4
5use Catalyst::Runtime 5.80;
6
42fe5d11 7extends 'Catalyst';
89de6a33 8
89de6a33 9use Catalyst qw/-Debug
10 ConfigLoader
d5cc37a4 11 Static::Simple
12 StackTrace/;
89de6a33 13our $VERSION = '0.01';
14
4666d5c7 15# Bring in the libified gitweb.cgi.
16use gitweb;
17
d3feefcf 18__PACKAGE__->config(
19 name => 'Gitalist',
20 default_view => 'Default',
21);
89de6a33 22
23# Start the application
24__PACKAGE__->setup();
25
89de6a33 26=head1 NAME
27
28Gitalist - Catalyst based application
29
30=head1 SYNOPSIS
31
32 script/gitalist_server.pl
33
34=head1 DESCRIPTION
35
36[enter your description here]
37
38=head1 SEE ALSO
39
40L<Gitalist::Controller::Root>, L<Catalyst>
41
42fe5d11 42=head1 AUTHORS AND COPYRIGHT
89de6a33 43
42fe5d11 44 Catalyst application:
45 (C) 2009 Venda Ltd and Dan Brook <dbrook@venda.com>
46
47 Original gitweb.cgi from which this was derived:
48 (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org>
49 (C) 2005, Christian Gierke
89de6a33 50
51=head1 LICENSE
52
42fe5d11 53FIXME - Is this going to be GPLv2 as per gitweb? If so this is broken..
54
89de6a33 55This library is free software. You can redistribute it and/or modify
56it under the same terms as Perl itself.
57
58=cut
59
601;