{"id":21731427,"url":"https://github.com/bzurkowski/boil","last_synced_at":"2025-07-03T01:33:24.895Z","repository":{"id":62560312,"uuid":"126749578","full_name":"bzurkowski/boil","owner":"bzurkowski","description":"Software templates managed via single API","archived":false,"fork":false,"pushed_at":"2024-03-20T17:14:39.000Z","size":144,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-27T07:46:52.703Z","etag":null,"topics":["boilerplate","boilerplate-application","initialization","jinja2","jinja2-templates","software-development"],"latest_commit_sha":null,"homepage":"","language":"Jinja","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bzurkowski.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.rst","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-25T23:34:06.000Z","updated_at":"2023-02-22T11:05:24.000Z","dependencies_parsed_at":"2024-11-26T04:47:50.243Z","dependency_job_id":null,"html_url":"https://github.com/bzurkowski/boil","commit_stats":{"total_commits":124,"total_committers":1,"mean_commits":124.0,"dds":0.0,"last_synced_commit":"0a121770944799d18482a95bcbbe19c3efdc24fe"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/bzurkowski/boil","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bzurkowski%2Fboil","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bzurkowski%2Fboil/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bzurkowski%2Fboil/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bzurkowski%2Fboil/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bzurkowski","download_url":"https://codeload.github.com/bzurkowski/boil/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bzurkowski%2Fboil/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263244345,"owners_count":23436472,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["boilerplate","boilerplate-application","initialization","jinja2","jinja2-templates","software-development"],"created_at":"2024-11-26T04:25:52.420Z","updated_at":"2025-07-03T01:33:24.866Z","avatar_url":"https://github.com/bzurkowski.png","language":"Jinja","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Boil\n\n[![Maintainability](https://api.codeclimate.com/v1/badges/b56e0c5a0856da0c35ba/maintainability)](https://codeclimate.com/github/bzurkowski/boil/maintainability)\n[![Package version](https://img.shields.io/pypi/v/boil.svg)](https://pypi.python.org/pypi/boil)\n[![License](https://img.shields.io/pypi/l/boil.svg)](https://pypi.python.org/pypi/boil)\n[![Python versions](https://img.shields.io/pypi/pyversions/boil.svg)](https://pypi.python.org/pypi/boil)\n[![Coverage](https://img.shields.io/codecov/c/github/bzurkowski/boil.svg)](https://codecov.io/gh/bzurkowski/boil)\n\n------------------------------------------------------------------------\n\n**Initialization of new software projects should be quick and easy.\nPeriod.**\n\nBoil aims to build a centralized, pluggable and community-driven\nrepository of project templates for various technologies, managed via\nsingle API.\n\nThese are the problems that it aims to solve:\n\n-   **Wasting time on initializing new software projects from scratch**\n\n    In particular: creating a file structure, checking naming\n    conventions, determining dependencies and completing basic metadata.\n\n-   **Poor quality and lack of consistency between projects**\n\n    Most developers initiate projects in their own way without complying\n    with generally accepted standards. Often due to lack of time,\n    projects are initialized neglectfully, have no maintenance-friendly\n    structure and are poorly documented.\n\n-   **Burden of bootstrapping tools**\n\n    Separate app generator for Ansible, Django, or Rails. Switching\n    between one and the other may be troublesome considering the variety\n    of APIs and different configuration options for each tool.\n\n## Installation\n\nUse pip or easy_install:\n\n    $ pip install boil\n\n## Usage\n\n    $ boil\n    Usage:\n        boil list\n        boil search \u003cphrase\u003e\n        boil new \u003cplate_name\u003e [--target-dir=\u003cdir\u003e]\n        boil -h | --help\n\n    Options:\n        --target-dir=\u003cdir\u003e  Target directory where project files should be\n                            populated.\n\nList all available plates:\n\n    $ boil list\n\nSearch for plates:\n\n    $ boil search \u003cphrase\u003e\n\nInitialize new project from selected plate:\n\n    $ boil new \u003cplate_name\u003e\n\n### Examples\n\nList all available plates:\n\n    $ boil list\n\nSearch for Python-related plates:\n\n    $ boil search python\n\nInitialize new Python package:\n\n    $ boil new python_package\n\nInitialize new Django app:\n\n    $ boil new django_app\n\nInitialize new Rails app:\n\n    $ boil new rails_app\n\nInitialize new Ruby gem:\n\n    $ boil new gem\n\nInitialize new Bash command-line tool:\n\n    $ boil new bash_cli\n\nInitialize new Ansible role:\n\n    $ boil new ansible_role\n\nInitialize new plate:\n\n    $ boil new plate\n\n## Changelog\n\nAll notable changes to this project are documented in the [CHANGELOG](CHANGELOG.rst).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbzurkowski%2Fboil","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbzurkowski%2Fboil","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbzurkowski%2Fboil/lists"}