Paramsfile
Dynamically generate configuration files with YAML and Mustache
Usage
Create a template
# ./nginx.conf.mustache
server {
  server_name {{ app_domain }};
}Create a parameters file
# ./parameters.yml
sprocketcorp:
  app_domain: www.sprocketcorp.comGenerate the config file
$ ./bin/paramsfile nginx.conf.mustacheResult
# ./nginx.conf
server {
  server_name www.sprocketcorp.com;
}