Project

paramsfile

0.0
No commit activity in last 3 years
No release in over 3 years
Dynamically generate configuration files with YAML and Mustache
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Paramsfile

Code Climate

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.com

Generate the config file

$ ./bin/paramsfile nginx.conf.mustache

Result

# ./nginx.conf

server {
  server_name www.sprocketcorp.com;
}