Skip to content

veith/simple-generator

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

simple-generator

Very simple golang template engine for cli usage, using the golang template package and the template functions from sprig.

Package template implements data-driven templates for generating textual output.

Simple-generator works with JSON or YMAL as input data format only

Dokumentation

Install

If you have Go 1.12.x installed:

GO111MODULE=on go get -u github.com/veith/simple-generator@v1.0.0

Usage


 simple-generator -d data.json -t template.xxx // renders to stdout
 simple-generator -d data.json -t template.xxx > target.file
 
 simple-generator -h  // help 
 Usage of simple-generator:
   -d string
          Path to data file which contains YAML or JSON
   -t string
          Path to tpl file



Usage with stdin

 cat ./datafile.yaml | simple-generator -t ./templates/templatefile.tmpl > targetfile.proto

 simple-generator -t ./templates/templatefile.tmpl > targetfile.proto < ./datafile.json
 

About

Simple cli template engine

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 77.8%
  • Shell 22.2%