The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package TestBlogApp;

use base qw/ Catalyst /;

use Catalyst qw/
	ConfigLoader
	Static::Simple	
/;

__PACKAGE__->config(
    'Plugin::ConfigLoader' => {
        file => __PACKAGE__->path_to('../../testblogapp.conf'),
     },
);


# Start the application
__PACKAGE__->setup;


1;