Bump version to 0.003006, update Changes and README.
[catagits/Gitalist.git] / script / gitalist_cgi.pl
CommitLineData
ba331b70 1#!/usr/bin/perl
89de6a33 2
42b626cd 3use FindBin;
4b3ff1cd 4BEGIN {
c7d034f8 5 my $env = "$FindBin::Bin/env";
4b3ff1cd 6 if (-r $env) {
7 do $env or die $@;
8 }
9}
42b626cd 10
df097c84 11use Catalyst::ScriptRunner;
12Catalyst::ScriptRunner->run('Gitalist', 'CGI');
89de6a33 13
141;
15
16=head1 NAME
17
18gitalist_cgi.pl - Catalyst CGI
19
20=head1 SYNOPSIS
21
22See L<Catalyst::Manual>
23
24=head1 DESCRIPTION
25
26Run a Catalyst application as a cgi script.
27
28=head1 AUTHORS
29
30Catalyst Contributors, see Catalyst.pm
31
32=head1 COPYRIGHT
33
89de6a33 34This library is free software. You can redistribute it and/or modify
35it under the same terms as Perl itself.
36
37=cut
df097c84 38