reify 0.2.0

Write configuration files from templates using env variables
reify-0.2.0 is not a library.
Visit the last successful build: reify-0.5.8

Reify

Quick start

Install using cargo:

cargo install reify

Write a template (currently only handlebars is supported):

{
  "host": "{{hostname}}",
  "features": {
    "showBetaBadge": "{{showBetaBadge}}",
    "onlyBetaUsers": "{{onlyBetaUsers}}"
  }
}

Write a configuration file:

[[mounts]]
source = "templates/environment.json"
destination = "out/environment.json"
processor = "handlebars"

Invoke the command to generate filled files:

dev_hostname=dev.com reify -c reify.toml -e dev