in reply to Config files in CPAN modules?
Hi,
Normally what I do is asking the user to provide the configuration, could be the config itself, or the path to the configuration file:
MyModule->new({ config_file => 'file.conf'}); # or MyModule->new({ config => \%Config }); # or MyModule->load_config($file); # etc...
This way it's up to the users script to decide which method he uses to provide the modules with the configuration settings.
Or going for well known places where the config files should be (linux -> /etc or /usr/local/etc) could be with subdir for the application itself or so; or the other way is to create a hierarchy for the application itself:
MyApp | +-- bin/ +-- etc/ +-- lib/ +-- docs/
But the most important thing of all is to DOCUMENT it. So that the user know how he must do instead of figuring it out. ;-)
Regards,
|
|---|