NAME

App::Env::Example - example application environment module for App::Env.

DESCRIPTION

Modules used by App::Env to load application environments are named

App::Env::<application>

or, if there is a site specific version:

App::Env::<SITE>::<application>

They should define the following functions:

envs
$hashref = envs( \%opts );

$hashref is a hash containing environmental variables and their values. %opts will contain the options passed to App::Env::import via the AppOpts option.

See the source of this module for a simple example.