http://www.perlmonks.org?node_id=248284


in reply to How do you organize your Perl applications?

php peoples like to put many files (conf, template, ..) in some non public dir often called inc or includes .. seems so (often seen on various webserver ;)
personally i like to use:
do conf; use vars qw( $bla $whatever );
this config file is often in the same dir then the script itself. when executed, it doesn't return anything. all that fits in one cvs project.