This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env starman | |
use strict; | |
use warnings; | |
use v5.10; | |
use AnyEvent; | |
use AnyEvent::Redis; | |
use JSON::XS; | |
use Plack::Request; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---------------------------------------------------------- | |
== Twiggy == | |
app.psgi: | |
my $app = sub { | |
return [ 200, ['Content-Type' => 'text/plain'], [ "Hello world\n"] ]; | |
}; | |
[sugar@host dir]$ twiggy --listen 127.0.0.1:8080 app.psgi |