Skip to content

Commit

Permalink
add psgi file for checking html
Browse files Browse the repository at this point in the history
  • Loading branch information
syohex committed Nov 10, 2011
1 parent 2e3b279 commit 617c524
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app.psgi
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 617c524

Please sign in to comment.