This file ( 836B ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
#!/usr/bin/env perl
use strict;
use warnings;
use FindBin; # warn $FindBin::Bin;
use lib "$FindBin::Bin/../lib";
# use this block if you don't need middleware, and only have a single target Dancer app to run here
use CommsLog;
CommsLog->to_app;
# to dump full list of deps:
# print join("\n", map { s|/|::|g; s|\.pm$||; $_ } sort keys %INC);
=begin comment
# use this block if you want to include middleware such as Plack::Middleware::Deflater
use CommsLog;
use Plack::Builder;
builder {
enable 'Deflater';
CommsLog->to_app;
}
=end comment
=cut
=begin comment
# use this block if you want to mount several applications on different path
use CommsLog;
use CommsLog_admin;
use Plack::Builder;
builder {
mount '/' => CommsLog->to_app;
mount '/admin' => CommsLog_admin->to_app;
}
=end comment
=cut