Add article support
[plack-app-gruntmaster.git] / app.psgi
CommitLineData
7dc32473
MG
1#!/usr/bin/perl -w
2use v5.14;
3
4use Plack::Builder;
5use Plack::App::Gruntmaster;
6
7builder {
8 enable 'Static', path => qr,/static/,, pass_through => 1;
9 enable 'Log4perl', category => 'plack', conf => 'log.conf';
10 Plack::App::Gruntmaster->to_app
11}
This page took 0.008918 seconds and 4 git commands to generate.