initial import of cut up site
[scpubgit/nwepm.git] / bin / site
CommitLineData
ce585b65 1#!/usr/bin/env perl
2
3use strictures 1;
4use Cwd qw(abs_path);
5use File::Basename qw(dirname);
6our $here;
7BEGIN { $here = dirname(abs_path($0)).'/..' }
8use lib $here.'/lib', $here.'/../App-SCS/lib';
9use App::SCS;
10
11(my $scs = App::SCS->new(
12 config => {
13 plugins => [
14 Feeds => {},
15 Server => {},
16 Generate => { host => 'northwestengland.pm.org' },
17 ]
18 }
19))->run_if_script;