The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/env perl
use strict;
use warnings;
use MyApp;
use Plack::Builder;

MyApp->setup_engine('PSGI');
my $app = sub { MyApp->run(@_) };

builder {
    enable "Plack::Middleware::AutoRefresh", dirs => [ 'root' ];
    $app;
}