NAME

Catalyst::Plugin::Setenv - Allows you to set up the environment from Catalyst's config file.

VERSION

Version 0.01

SYNOPSIS

In your application:

use Catalyst qw/Setenv/;

In your config file:

environment:
  FOO: bar
  BAR: baz

When your app starts, $ENV{FOO} will be "bar", and $ENV{BAR} will be "baz".

EXPORT

A list of functions that can be exported. You can delete this section if you don't export anything, such as for a purely object-oriented module.

FUNCTIONS

setup

Calls the other setup methods, and then sets the environment variables.

AUTHOR

Jonathan Rockway, <jrockway at cpan.org>

BUGS

Please report any bugs or feature requests to bug-catalyst-plugin-setenv at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Catalyst-Plugin-Setenv. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc Catalyst::Plugin::Setenv

You can also look for information at:

ACKNOWLEDGEMENTS

Thanks to Bill Moseley's message to the mailing list that prompted me to write this.

COPYRIGHT & LICENSE

Copyright 2006 Jonathan Rockway, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.