The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package MyTest::App;
use Mojo::Base 'Mojolicious';
our @VERSION = 1;

sub startup {
  my $self = shift;
  $self->plugin( 'InstallablePaths' );
  $self->routes->any( '/' => sub{ shift->render_static('test.html') } );
}

1;