https://github.com/m4tx/boiler
Highly opinionated tool for updating boilerplate files for your projects
https://github.com/m4tx/boiler
developer-tools productivity
Last synced: about 1 month ago
JSON representation
Highly opinionated tool for updating boilerplate files for your projects
- Host: GitHub
- URL: https://github.com/m4tx/boiler
- Owner: m4tx
- License: mit
- Created: 2024-01-06T14:40:54.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2026-05-01T16:29:27.000Z (about 2 months ago)
- Last Synced: 2026-05-01T18:24:27.199Z (about 2 months ago)
- Topics: developer-tools, productivity
- Language: Rust
- Homepage:
- Size: 563 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
boiler
======
[](https://github.com/m4tx/boiler/actions/workflows/rust.yml)
[](https://github.com/m4tx/boiler/blob/master/LICENSE)
[](https://codecov.io/gh/m4tx/boiler)
Boiler is a highly opinionated CLI tool for creating and updating boilerplate files for your projects. It is capable of automatically detecting various different metadata from the project files, such as the programming languages used, frameworks, and even specific features of git, and then generating the boilerplate files based on that information. The boilerplate includes, but is not limited to, CI pipelines, pre-commit hooks, and configuration files.
## Building
The project is written in Rust and uses Cargo build system.
```shell
cargo build --release
```
## Running
Simply run the binary in the root directory of your project. It will automatically detect the project type and generate the boilerplate files in the current directory.
For more information, run `boiler --help`.
## Developing
### `pre-commit`
We encourage contributors to use predefined [`pre-commit`](https://pre-commit.com/)
hooks — to install them in your local repo, make sure you have `pre-commit`
installed and run
```shell
pre-commit install
```