Skip to content
/ blek Public

Blek le Rat is a fast, simple template tool for the commandline.

License

Notifications You must be signed in to change notification settings

berkes/blek

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Blek

Blek le Rat is a fast, simple template tool for the commandline.

It accepts Jinja2 templates and replaces variables with those you pass along.

invoice.j2:

Date: {{ date }}
Number: {{ number }}
Dear {{ name | default(value="valued customer") }}, this the invoice for 1 pizza. Please pay ฿{{ amount }}.
$ blek invoice.j2 --var amount=10,000 --var "name=John Doe" --var number=$(openssl rand -base64 6)
Date: 2021-01-29
Number: KqSYp872
Dear John Doe, this the invoice for 1 pizza. Please pay ฿10,000.

Crates.io Crates.io

Features

  • Simple, fast, small.
  • Binary. Just download and run (or compile and distribute)
  • Jinja2: A familiar (Liquid, Django, Twig), well documented templating language. We use Tera.
  • Any file can be a template.
  • Comes with ever growing set of basic variables (currently 2... 😋)
  • Unix philosophy; very easy to automate or use in automation.

Quickstart

Cargo: (TODO how to set up Rust and cargo)

cargo install

TODO: release binaries.

Build from source

git checkout https://git.webschuur.com/berkes/blek
cd blek
cargo build

Run

After installing, from the place where it is installed:

blek --help

This builds and runs the platform locally.

Test

After downloading the source:

cargo test

This builds and runs the tests locally. There are very few tests, since there are very few features.

About

Blek le Rat is a fast, simple template tool for the commandline.

Resources

License

Stars

Watchers

Forks

Packages

No packages published