#!/usr/bin/env perl use strictures 1; use Cwd qw(abs_path); use File::Basename qw(dirname); our $here; BEGIN { $here = dirname(abs_path($0)).'/..' } use lib $here.'/lib', $here.'/../App-SCS/lib'; use App::SCS; (my $scs = App::SCS->new( config => { plugins => [ Feeds => {}, Server => {}, Generate => { host => 'northwestengland.pm.org' }, ] } ))->run_if_script;