MooseX::App::Plugin::Config(3pm) | User Contributed Perl Documentation | MooseX::App::Plugin::Config(3pm) |
MooseX::App::Plugin::Config - Config files your MooseX::App applications
In your base class:
package MyApp; use MooseX::App qw(Config); option 'global_option' => ( is => 'rw', isa => 'Int', );
In your command class:
package MyApp::Some_Command; use MooseX::App::Command; extends qw(MyApp); option 'some_option' => ( is => 'rw', isa => 'Str', );
Now create a config file (see Config::Any) eg. a yaml file:
--- global: global_option: 123 some_command: global_option: 234 some_option: "hello world"
The user can now call the program with a config file:
bash$ myapp some_command --config /path/to/config.yml
Read the config filename
The full content of the loaded config file
Config::Any
2021-01-04 | perl v5.32.0 |