conform v2.5.2 Conform.SysConfig

This module is responsible for reading and writing, and manipulating *.config files

Summary

Functions

Merge two configs together to produce a new unified config. The second argument represents the config with the highest precedence in the case of conflicts

Apply pretty formatting to a config

Print a config to the console without applying any formatting

Read an app.config/sys.config from the provided path. Returns the config as Elixir terms

Write a config (in the form of Elixir terms) to disk in the required *.config format

Functions

merge(config1, config2)

Merge two configs together to produce a new unified config. The second argument represents the config with the highest precedence in the case of conflicts.

prettify(config)

Apply pretty formatting to a config

print(config)

Print a config to the console without applying any formatting

read(path)
read(binary) :: [term]

Read an app.config/sys.config from the provided path. Returns the config as Elixir terms.

write(path, config)
write(binary, term) :: :ok | {:error, term}

Write a config (in the form of Elixir terms) to disk in the required *.config format.