From d18213e3c6956540e21d738b411b00e9eb71dc4e Mon Sep 17 00:00:00 2001 From: franck cuny Date: Tue, 13 Apr 2010 18:46:54 +0200 Subject: basic REST job queue using tatsumaki + redis --- app.psgi | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 app.psgi (limited to 'app.psgi') 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 ); -- cgit v1.2.3