summaryrefslogtreecommitdiff
path: root/app.psgi
diff options
context:
space:
mode:
Diffstat (limited to 'app.psgi')
-rw-r--r--app.psgi11
1 files changed, 11 insertions, 0 deletions
diff --git a/app.psgi b/app.psgi
new file mode 100644
index 0000000..9473ea3
--- /dev/null
+++ b/app.psgi
@@ -0,0 +1,11 @@
+#!/usr/bin/perl
+use strict;
+use warnings;
+use lib ('lib');
+
+use presque;
+use Plack::Builder;
+use YAML::Syck;
+
+my $conf = LoadFile('conf.yaml');
+my $app = presque->app( config => $conf );