conform v2.5.2 Mix.Tasks.Conform.Effective
Print the effective configuration for the current project, either in it’s entirety, or for a specific app, or setting
Examples
# Output the entire effective configuration
mix conform.effective
# Output the effective configuration for an application
mix conform.effective --app myapp
# Output the effective configuration for a specific setting
mix conform.effective --key myapp.key.subkey
# Output the effective configuration for a specific environment
mix conform.effective --env prod
# Output the effective schema for this application. Note that this includes schemas inherited from dependencies
mix conform.effective --schema
# output to a file instead of to stdout
mix conform.effective --out sys.config
Usage of --app
, --key
and `--schema
options is mutually exclusive, but --env
can be
provided for all three use cases.
Summary
Functions
A task needs to implement run
which receives
a list of command line args.
Callback implementation for Mix.Task.run/1
.