Нет описания

xcad 9b5f7fd484 docs: reorganize contributor and agent guidance 1 день назад
.assets 6edd149ccb release(v0.2.0): prepare template runtime rollout 1 неделя назад
.github ef011e9319 fix(release): repair asset alias workflow 1 неделя назад
.wiki f64137a60f wiki updates and file cleanup 1 неделя назад
cli 825267c00d feat(bash): add template kind (#1790) 1 день назад
docs 9b5f7fd484 docs: reorganize contributor and agent guidance 1 день назад
library 6edd149ccb release(v0.2.0): prepare template runtime rollout 1 неделя назад
scripts 8b11094920 fix(install): support stdin execution 1 неделя назад
tests 825267c00d feat(bash): add template kind (#1790) 1 день назад
.gitignore 7cf643d078 testing units 4 месяцев назад
AGENTS.md 9b5f7fd484 docs: reorganize contributor and agent guidance 1 день назад
CHANGELOG.md 825267c00d feat(bash): add template kind (#1790) 1 день назад
CONTRIBUTING.md 9b5f7fd484 docs: reorganize contributor and agent guidance 1 день назад
LICENSE 7e7cbc3d4a Initial commit 4 лет назад
README.md 825267c00d feat(bash): add template kind (#1790) 1 день назад
RELEASE.md 9b5f7fd484 docs: reorganize contributor and agent guidance 1 день назад
SECURITY.md 52a4363e45 fixed typo 2 лет назад
flake.lock a4f53cf9aa feat: add flake for nix install (#1405) 6 месяцев назад
flake.nix c6feed2f1e fix(nix): add email-validator dependency to flake (#1573) 4 месяцев назад
pyproject.toml 355bc9b268 chore(release): bump version to 0.2.1 2 дней назад
renovate.json 08de160a27 chore(repo): simplify root project config 1 неделя назад
requirements.txt 1d9b57e09a chore(deps): update dependency typer to v0.20.0 6 месяцев назад

README.md

Welcome

Create reusable templates and turn them into configurable workloads for homelabs and self-hosted infrastructure. Free and Open-Source.

How it works

Create reusable templates for infrastructure expertise like Docker, Kubernetes, Terraform, Ansible, static files, Python, and more. Use the built-in Jinja2-like templating syntax with << >> variables, <% %> blocks, and <# #> comments to keep configuration modular and conditional. Sync with Git in both directions or manage everything locally. Render templates, configure variables through a guided wizard, and wire up secrets. Copy them to remote servers and environments or any local directory.

✨ Explore 100+ template presets for homelabs and self-hosted infrastructure: https://github.com/ChristianLempa/boilerplates-library

Boilerplates CLI

The Boilerplates CLI is the main interface for working with template libraries locally. It lets you discover available templates, inspect their metadata and variables, validate them, and generate ready-to-use files.

It combines template-defined variables and defaults, guided interactive prompts, CLI variable overrides, and git-backed template libraries into one workflow. In practice, that means you can keep reusable boilerplates in a repository and turn them into concrete, environment-specific configurations with a single command.

⚠️ Boilerplates 0.2.0 introduced the new template format. Legacy template.yaml / template.yml manifests and .j2 template files are no longer supported.

ℹ️ New templates must use template.json, keep renderable content under files/, and use the custom Jinja2-like delimiters << >>, <% %>, and <# #> instead of default Jinja2 syntax.

Template kinds

Use a dedicated kind when the template's primary output matches that technology. Use python for Python-oriented project scaffolds, automation helpers, packages, and service/tooling skeletons. Use bash for Bash-oriented scripts, bootstrap flows, maintenance tasks, and automation snippets. Keep Python or Bash files inside another kind, such as compose or terraform, when they are only supporting files for that primary infrastructure template.

Initial python and bash validation is intentionally minimal: the CLI validates template syntax, declared variables, rendering, and generic semantic checks where applicable. Language-specific validation such as Python compilation, shell syntax checks, formatting, or test execution can be added as follow-up work once template conventions are established.

Installation

Automated installer script

Install the Boilerplates CLI using the automated installer:

# Install latest version
curl -fsSL https://raw.githubusercontent.com/christianlempa/boilerplates/main/scripts/install.sh | bash

# Install specific version
curl -fsSL https://raw.githubusercontent.com/christianlempa/boilerplates/main/scripts/install.sh | bash -s -- --version v1.2.3

The installer uses pipx to create an isolated environment for the CLI tool. Once installed, the boilerplates command will be available in your terminal.

Nixos

If you are using nix flakes

# Run without installing
nix run github:christianlempa/boilerplates -- --help

# Install to your profile
nix profile install github:christianlempa/boilerplates

# Or directly in your flake
{
  inputs.boilerplates.url = "github:christianlempa/boilerplates";

  outputs = { self, nixpkgs, boilerplates }: {
    # Use boilerplates.packages.${system}.default
  };
}

# Use in a temporary shell
nix shell github:christianlempa/boilerplates

Quick Start

# Explore
boilerplates --help

# Update Repository Library
boilerplates repo update

# List all available templates for a Docker Compose stack
boilerplates compose list

# List technology-agnostic static file templates
boilerplates static list

# Show details about a specific template
boilerplates compose show nginx

# Generate a template (interactive mode)
boilerplates compose generate authentik

# Generate with custom output directory
boilerplates compose generate nginx --output my-nginx-server

# Non-interactive mode with variable overrides
boilerplates compose generate traefik --output my-proxy \
  --var service_name=traefik \
  --var traefik_enabled=true \
  --var traefik_host=proxy.example.com \
  --no-interactive

Managing Defaults

Save time by setting default values for variables you use frequently:

# Set a default value
boilerplates compose defaults set container_timezone="America/New_York"
boilerplates compose defaults set restart_policy="unless-stopped"

Template Libraries

Boilerplates uses git-based libraries to manage templates. You can add custom repositories:

# List configured libraries
boilerplates repo list

# Update all libraries
boilerplates repo update

# Add a custom library
boilerplates repo add my-templates https://github.com/user/templates \
  --directory library \
  --branch main

# Remove a library
boilerplates repo remove my-templates

Contribution

Contributions are welcome. Feel free to open an issue or submit a pull request!

License

This repository is licensed under the MIT License.