NAME
DocLife - Document Viewer written in Perl, to run under Plack.
SYNOPSIS
# app.psgi
use
DocLife::Pod;
DocLife::Pod->new(
root
=>
"./lib"
);
# one-liner
plackup -MDocLife::Pod -e
'DocLife::Pod->new( root => "./lib" )->to_app'
How To Mount
need base_url option.
# app.psgi
use
Plack::Builder;
use
DocLife::Pod;
use
DocLife::Markdown;
my
$pod_app
= DocLife::Pod->new(
root
=>
'../lib'
,
base_url
=>
'/pod/'
);
my
$doc_app
= DocLife::Markdown->new(
root
=>
'./doc'
,
suffix
=>
'.md'
,
base_url
=>
'/doc/'
);
builder {
mount
'/pod'
=>
$pod_app
;
mount
'/doc'
=>
$doc_app
;
};
CONFIGURATION
SEE ALSO
COPYRIGHT
Copyright 2013 Shinichiro Aska
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.