From 617c524b5110d4bff18a801f1e28ea16fda2979f Mon Sep 17 00:00:00 2001 From: Syohei YOSHIDA Date: Thu, 10 Nov 2011 23:49:14 +0900 Subject: [PATCH] add psgi file for checking html --- app.psgi | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 app.psgi diff --git a/app.psgi b/app.psgi new file mode 100644 index 0000000..cfc3d4e --- /dev/null +++ b/app.psgi @@ -0,0 +1,10 @@ +use strict; +use warnings; + +use Cwd (); +use Plack::App::File; + +my $app = Plack::App::File->new( + root => Cwd::getcwd(), + encoding => 'shift_jis', +)->to_app;