|
|
7 ore în urmă | |
|---|---|---|
| .assets | 1 zi în urmă | |
| .github | 7 ore în urmă | |
| .wiki | 1 zi în urmă | |
| cli | 7 ore în urmă | |
| library | 1 zi în urmă | |
| scripts | 1 zi în urmă | |
| tests | 7 ore în urmă | |
| .gitignore | 4 luni în urmă | |
| AGENTS.md | 7 ore în urmă | |
| CHANGELOG.md | 7 ore în urmă | |
| LICENSE | 4 ani în urmă | |
| README.md | 1 zi în urmă | |
| SECURITY.md | 2 ani în urmă | |
| flake.lock | 5 luni în urmă | |
| flake.nix | 4 luni în urmă | |
| pyproject.toml | 7 ore în urmă | |
| renovate.json | 1 zi în urmă | |
| requirements.txt | 5 luni în urmă |
Create reusable templates and turn them into configurable workloads for homelabs and self-hosted infrastructure. Free and Open-Source.
Create reusable templates for infrastructure expertise like Docker, Kubernetes, Terraform, Ansible, 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
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.
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.
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
# Explore
boilerplates --help
# Update Repository Library
boilerplates repo update
# List all available templates for a docker compose
boilerplates compose 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
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"
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
Contributions are welcome. Feel free to open an issue or submit a pull request!
This repository is licensed under the MIT License.