gotpl

command module
v0.0.0-...-cfded0e Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 5, 2020 License: Apache-2.0 Imports: 1 Imported by: 0

README

gotpl - CLI tool for Golang templates

Command line tool that compiles Golang templates with values from YAML and JSON files.

Supports Sprig functions.

Inspired by Helm

Started as a fork from github.com/tsg/gotpl but this project looks abandoned

Added some things from Helm, like the way they read values, and some functions for the templates.

And some improvements by myself :)

Install

You can download gotpl binaries for windows, linux and mac from here: https://github.com/belitre/gotpl/releases

Usage

Say you have a template.tpl file like this:

    {{.first_name}} {{.last_name}} is {{.age}} years old.

and a user.yml YAML file like this one:

    first_name: Max
    last_name: Mustermann
    age: 30

You can compile the template like this:

    gotpl template.tpl -f user.yml

You can compile multiple templates at the same time like this (warning: gotpl will generate a single ouput for all the templates!):

    gotpl template.tpl other_template.tpl -f user.yml

You can compile templates and directories, includes subdirectories (warning: gotpl will generate a single ouput for all the templates!):

    gotpl template.tpl /templates/directory -f user.yml

You can set values though the command line too:

    gotpl template.tpl -f user.yaml --set age=40

You can set an output folder:

    gotpl template.tpl /templates/directory -f user.yml --set age=40 -o /tplresult

When using -ogotpl will generate files with the same names as the templates, so if the template file is template.tpl gotpl will generate $OUPUT_FOLDER/template.tpl. If multiple files with the same name are provided then gotpl will override these files and will keep only the last one!

You can get help about how to use the command running:

    gotpl -h

Development

  • Requires `go 1.13.1``

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL