The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestAppProdNonDefault;
our $VERSION = '0.01';

use Moose;
use namespace::autoclean;

extends 'Catalyst';
with 'CatalystX::UriForStatic';

__PACKAGE__->config(
    envkey      => 'my_sysenv',
    local_value => 'devel',
    static_host => 'http://static.example.net',
    my_sysenv   => 'non-local',
);

__PACKAGE__->setup;

1;