The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/env perl

use FindBin qw/$Bin/;
use lib "$Bin/../../lib";

BEGIN {
    $ENV{GITALIST_CONFIG} = "$Bin/../gitalist.conf";
}

use Catalyst::ScriptRunner;
Catalyst::ScriptRunner->run('Gitalist', 'Server');

1;