linkorb/stamp

Stamp: Generate files from templates and data files

v2.2.1 2019-11-25 13:09 UTC

README

Stamp generate files by applying data to templates.

Use-cases:

  • Generate common repository files like README.md, LICENSE, .gitignore, etc (by combining stamp with metaculous)
  • Static site generator
  • Documentation generator

Installation

composer require linkorb/stamp --dev

Usage

vendor/bin/stamp --help

How does it work?

When you run stamp generate, Stamp will look for it's configuration in a file called stamp.yaml in the current directory. You can also pass a specify config file using -c.

Stamp will then loop through the templates defined in the config file, and use the template files defined by the src key, and generate the file defined by the dest key.

By specifying an items key, one template may be applied multiple times, resulting in multiple output files.

By specifying a variables key, the variables at the template level will get merged with the project level variables before being passed to the template, allowing you to override/add variables at the template level.

stamp.yml example:

Here's a simple example stamp.yml file:

variables:
  title: Hello world
  license: mit

templates:
  - src: stamp/README.md.twig
    dest: README.md
    variables:
      title: Hello world README file

  - src: https://raw.githubusercontent.com/IQAndreas/markdown-licenses/master/{{ license }}.md
    dest: LICENSE
  
  - src: https://raw.githubusercontent.com/gitlabhq/gitlabhq/master/CONTRIBUTING.md
    dest: CONTRIBUTING.md

Simply type stamp generate (or vendor/bin/stamp generate) in the root of your project, and the listed files will be (re)generated based on their templates.

Using URLs as templates allow you to manage your templates in one location (a git repository), making it easy to update your projects based on updated templates.

Stamp supports multiple template languages/engines, which will be used based on the template file (src) file extension:

Variables and functions

Stamp is using the LinkORB Loader library for loading the stamp.yaml file.

It therefor supports all features related to variables, includes and functions that the loader does.

Development / debugging:

The examples/ directory contains an example configuration (stamp.yaml) and template files.

License

MIT. Please refer to the license file for details.

Brought to you by the LinkORB Engineering team

687474703a2f2f7777772e6c696e6b6f72622e636f6d2f642f6d6574612f74696572312f696d616765732f6c696e6b6f7262656e67696e656572696e672d6c6f676f2e706e67
Check out our other projects at linkorb.com/engineering.

Btw, we're hiring!