All Projects → tmrts → Boilr

tmrts / Boilr

Licence: apache-2.0
⚡️ boilerplate template manager that generates files or directories from template repositories

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Boilr

Uicard
Generic UI for card games like Hearthstone, Magic Arena and Slay the Spire...
Stars: ✭ 142 (-88.8%)
Mutual labels:  boilerplate, tool, template
Rust Cli Boilerplate
Rust project boilerplate for CLI applications
Stars: ✭ 108 (-91.48%)
Mutual labels:  cli, boilerplate-template, boilerplate
Extension Create
Create modern cross-browser extensions with no build configuration.
Stars: ✭ 167 (-86.83%)
Mutual labels:  cli, boilerplate, template
Firebird
Template for Phoenix 1.3 projects
Stars: ✭ 66 (-94.79%)
Mutual labels:  boilerplate, template
Quickapp Boilerplate Template
🔨致力于构建更为优雅的「快应用」开发脚手架模板。https://quickapp.lovejade.cn/tag/quickapp/
Stars: ✭ 58 (-95.43%)
Mutual labels:  boilerplate, template
Fsq
A tool for querying the file system with a SQL-like language.
Stars: ✭ 60 (-95.27%)
Mutual labels:  cli, tool
Create Wxapp Page
创建微信小程序页面的命令行工具
Stars: ✭ 37 (-97.08%)
Mutual labels:  cli, template
Dotnet Template Onion
Onion Architecture with .NET 5/.NET Core and CQRS/Event Sourcing following a DDD approach
Stars: ✭ 70 (-94.48%)
Mutual labels:  boilerplate-template, template
React Native Template Typescript
👾 Clean and minimalist React Native template for a quick start with TypeScript.
Stars: ✭ 1,148 (-9.46%)
Mutual labels:  boilerplate, template
Fileinfo
📄Get information on over 10,000 file extensions right from the terminal
Stars: ✭ 86 (-93.22%)
Mutual labels:  cli, tool
Flutter Boilerplate Project
A boilerplate project created in flutter using MobX and Provider.
Stars: ✭ 1,194 (-5.84%)
Mutual labels:  boilerplate-template, boilerplate
Pizza Cli
🍕 Order a pizza in a CLI app (just for fun!)
Stars: ✭ 58 (-95.43%)
Mutual labels:  cli, tool
Lucid
A simple mock-application for programs that work with child processes
Stars: ✭ 45 (-96.45%)
Mutual labels:  cli, tool
Neutron
Neutron is a CLI developed to help developers create new react projects with Redux + Redux Saga and offers well-structured code standardization.
Stars: ✭ 65 (-94.87%)
Mutual labels:  cli, tool
Veluxi Starter
Veluxi Vue.js Starter Project with Nuxt JS and Vuetify
Stars: ✭ 39 (-96.92%)
Mutual labels:  boilerplate, template
Readme Template
A Readme Template For Tomorrow's Opensource
Stars: ✭ 69 (-94.56%)
Mutual labels:  boilerplate, template
Image To Xls
A simple tool to make ascii art from an image using excel colored cells.
Stars: ✭ 75 (-94.09%)
Mutual labels:  cli, tool
Nostromo
CLI for building powerful aliases
Stars: ✭ 76 (-94.01%)
Mutual labels:  cli, tool
Labeler
Manage labels on GitHub as code
Stars: ✭ 78 (-93.85%)
Mutual labels:  cli, tool
Swift Template
A template based module generator for Swift projects.
Stars: ✭ 34 (-97.32%)
Mutual labels:  boilerplate, template

Boilr

Build Status License Release Version Code Quality Documentation Chat Room

Are you doing the same steps over and over again every time you start a new programming project?

Boilr is here to help you create projects from boilerplate templates.

Usage Demonstration

For more details, see Introduction page.

Features

  • No dependencies (NodeJS, Python Interpreter etc.) - Boilr is a single statically linked binary. Grab the one that fits your architecture, and you're all set to save time by using templates!
  • Full Power of Golang Templates - Golang has powerful templating constructs which are very easy to learn and powerful.
  • Dead-Simple Template Creation - Creating boilerplate templates are very easy, check out the license template to see a simple, but very useful template for adding licenses to new projects with a single command.

Installation

Binaries for Linux & OSX are built automatically by Travis every release. You can download them directly or run the installation script.

Please see Installation page for more information.

Getting Started with Boilr

Use boilr help to get the list of available commands.

Download a Template

In order to download a template from a github repository, use the following command:

boilr template download <github-repo-path> <template-tag>
boilr template download tmrts/boilr-license license

The downloaded template will be saved to local boilr registry.

Save a Local Template

In order to save a template from filesystem to the template registry use the following command:

boilr template save <template-path> <template-tag>
boilr template save ~/boilr-license license

The saved template will be saved to local boilr registry.

Use a Template

For a Boilr template with the given directory structure:

.
├── project.json
├── README.md
└── template
    └── LICENSE

And the following project.json context file:

{
    "Author": "Tamer Tas",
    "Year": "2015",
    "License": [
        "Apache Software License 2.0",
        "MIT",
        "GNU GPL v3.0"
    ]
}

When using the template with the following command:

boilr template use <template-tag> <target-dir>
boilr template use license /workspace/tmrts/example-project/

The user will be prompted as follows:

[?] Please choose an option for "License"
    1 -  "Apache Software License 2.0"
    2 -  "MIT"
    3 -  "GNU GPL v3.0"
    Select from 1..3 [default: 1]: 2
[?] Please choose a value for "Year" [default: "2015"]:
[?] Please choose a value for "Author" [default: "Tamer Tas"]:
[✔] Created /workspace/tmrts/example-project/LICENSE
[✔] Successfully executed the project template license in /workspace/tmrts/example-project

For more information please take a look at Usage and Creating Templates pages in the wiki.

List of Templates

Electron Logo Docker Logo Kubernetes Logo

Take a look at the Templates page for an index of project templates, examples, and more information.

Need Help? Found a bug? Want a Feature?

If you'd like to contribute, share your opinions or ask questions, please feel free to open an issue.

At this stage, user feedback is of utmost importance, every contribution is welcome however small it may be.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].