The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

exact::conf - Cascading merged application configuration extension for exact

VERSION

version 1.05

SYNOPSIS

    use exact -conf;

DESCRIPTION

exact::conf is a cascading merged application configuration extension for exact. It effectively is an integration of Config::App with exact. Consult the Config::App documentation for additional information. See the exact documentation for additional information about extensions. The intended use of exact::conf is via the extension interface of exact.

    use exact -conf, -cli, -noutf8;

However, you can also use it directly, which will also use exact with default options:

    use exact::conf;

IMPORTED FUNCTION

There is only 1 imported function:

conf

This...

    use exact -conf;
    say conf->get('answer');

...is equivalent to this...

    use Config::App;
    say Config::App->new->get('answer');

To pass input into Config::App-new>, do this:

    say conf('settings/conf.yaml')->get('answer');

SEE ALSO

You can look for additional information at:

AUTHOR

Gryphon Shafer <gryphon@cpan.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2019-2021 by Gryphon Shafer.

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)