All Projects → Ilyes512 → boilr

Ilyes512 / boilr

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

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to boilr

DiscordBot-Template
A boilerplate / template for discord.js bots with 100% coverage of Discord API, command handler, error handler based on https://discordjs.guide/
Stars: ✭ 129 (+200%)
Mutual labels:  boilerplate-template
midway-boilerplate
midway 系列脚手架仓库
Stars: ✭ 22 (-48.84%)
Mutual labels:  boilerplate-template
Sims4ScriptingBPProj
Sims 4 Scripting Boilerplate Project
Stars: ✭ 32 (-25.58%)
Mutual labels:  boilerplate-template
ExpressSimpleBoilerPlate
Kerangka project Express JS dengan tambahan ES2015, ESLint, Webpack, Babel, beberapa middleware pengaman, Worker Threads, mock data generator, dan masih banyak lagi.
Stars: ✭ 22 (-48.84%)
Mutual labels:  boilerplate-template
factorio-example-mod
Lightweight modular example mod with various features and compatibilities
Stars: ✭ 15 (-65.12%)
Mutual labels:  boilerplate-template
webpack-typescript-react
Webpack 5 boilerplate with support of most common loaders and modules (see tags and description)
Stars: ✭ 185 (+330.23%)
Mutual labels:  boilerplate-template
awesome-vue-boilerplate
😍 Awesome Vue Boilerplate 🥳 Vue 🥰 Vuex, vuex-pathify 🤗 element-ui 🤲 tailwindcss
Stars: ✭ 60 (+39.53%)
Mutual labels:  boilerplate-template
bootstrap4-boilerplate
A Bootstrap v4.4.1 boiler plate with sass, concatenation, minification, autoprefixer, Browsersync, hot reloading and sourcemaps all runned by Gulp
Stars: ✭ 19 (-55.81%)
Mutual labels:  boilerplate-template
docker-django-boilerplate
Minimal boilerplate setup for a Django project with Docker.
Stars: ✭ 41 (-4.65%)
Mutual labels:  boilerplate-template
vuelectro
Bare minimum, simplistic, production ready scaffolding/build tool for developing with Electron and Vue.Js
Stars: ✭ 19 (-55.81%)
Mutual labels:  boilerplate-template
react-initial-bootstrap
an "almost complete" template for your new projects
Stars: ✭ 24 (-44.19%)
Mutual labels:  boilerplate-template
alexa-skill-boilerplate
An easy to use Amazon Alexa Skill Boilerplate for fast skill creation
Stars: ✭ 54 (+25.58%)
Mutual labels:  boilerplate-template
beat
Server framework to create fast and lightweight projects
Stars: ✭ 12 (-72.09%)
Mutual labels:  boilerplate-template
sparrowx
Minimal, SEO-friendly, Jekyll + Netlify CMS Boilerplate.
Stars: ✭ 15 (-65.12%)
Mutual labels:  boilerplate-template
xd-plugin-boilerplate
A boilerplate for plugins for Adobe XD CC including preconfigured linting, autocompletion and Webpack for bundling
Stars: ✭ 25 (-41.86%)
Mutual labels:  boilerplate-template
ExpressJS-SocketIO-Boilerplate
📦 Simple Express.js & Socket.io Boilerplate
Stars: ✭ 31 (-27.91%)
Mutual labels:  boilerplate-template
configurable-app-examples-4x-js
Configurable Application Examples using ApplicationBase
Stars: ✭ 22 (-48.84%)
Mutual labels:  boilerplate-template
nodejs-rest-api-boilerplate
A NodeJs boilerplate that implements Google, Facebook and classic Authentication following the best practices. Clear endpoints, easy to use, perfect to start a project quickly. Provides an example front end in ReactJS.
Stars: ✭ 18 (-58.14%)
Mutual labels:  boilerplate-template
starbase
⭐ Production-ready website boilerplate made with webpack 5, modern JS (via Babel 7) & Sass
Stars: ✭ 70 (+62.79%)
Mutual labels:  boilerplate-template
cli-boilerplates
🚀 A Command Line Tool to generate boilerplates with creation of files globally. A tool to help students quick start with single line of code.
Stars: ✭ 27 (-37.21%)
Mutual labels:  boilerplate-template

Boilr Logo

Boilr


Build Status License Release Version Code Quality Documentation

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.

NOTE

This is a hard-fork of the original project by tmrts. Done this because of inactivity on the original project.

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.

Homebrew (MacOS)

brew tap Ilyes512/boilr
brew install Ilyes512/boilr/boilr

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].