A minimal renderer for Go text templates
Go to file
2024-02-25 02:50:36 +03:30
functions Add 'genpw' custom function 2024-02-25 02:50:36 +03:30
samples Add 'genpw' custom function 2024-02-25 02:50:36 +03:30
.gitignore Re-add 'build/' into .gitignore 2024-02-15 20:06:22 +03:30
.goreleaser.yml Fix ARCH for ARMv7 in goreleaser config (Try #2) 2024-02-15 20:45:10 +03:30
go.mod Add "sprig" functions and "domain" custom function 2024-02-24 05:54:33 +03:30
go.sum Add "sprig" functions and "domain" custom function 2024-02-24 05:54:33 +03:30
LICENSE Initial commit 2024-02-15 18:45:16 +03:30
main_test.go Initial commit 2024-02-15 18:45:16 +03:30
main.go Add "sprig" functions and "domain" custom function 2024-02-24 05:54:33 +03:30
Makefile Try to fix "make release" 2024-02-24 06:01:02 +03:30
README.md Update README 2024-02-15 20:52:18 +03:30
VERSION Add 'genpw' custom function 2024-02-25 02:50:36 +03:30

MiniTMPL

MiniTMPL is a simple, yet powerful tool designed to render text templates using environment variables. It reads a template from stdin and outputs the rendered version to stdout, making it an excellent tool for generating configuration files, messages, or any text-based content that requires dynamic data insertion.

Features

  • Reads templates from standard input (stdin).
  • Renders templates using environment variables.
  • Supports basic template functions provided by Go's text/template package.

Getting Started

To use EnvTemplater, clone this repository or download the latest release to your local machine.

Prerequisites

Ensure you have Go installed on your system. EnvTemplater requires Go 1.14 or higher.

Building form source

First, clone the repository:

git clone https://git.behzadan.ir/p/minitmpl.git
cd minitmpl

Then, build the program:

go build -o minitmpl

Usage

To use EnvTemplater, simply pipe a template into the program and it will output the rendered version:

echo "Hello, {{.USER}}" | ./envtemplater

This will replace {{.USER}} with the value of the USER environment variable.

License

This project is licensed under a custom license - see the LICENSE file for details.