Dave Cross: Still Munging Data With Perl: Online event - Mar 17 Learn more

NAME

DocLife - Document Viewer written in Perl, to run under Plack.

SYNOPSIS

# app.psgi
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
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

root

Document root directory. Defaults to the current directory.

base_url

Specifies a base URL for all URLs on a index page. Defaults to the `/`.

suffix

Show only files that match the suffix. No url suffix.

SEE ALSO

Plack

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.