All Projects → cruft → Cruft

cruft / Cruft

Licence: mit
Allows you to maintain all the necessary cruft for packaging and building projects separate from the code you intentionally write. Built on-top of, and full compatible with, CookieCutter.

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects

Projects that are alternatives of or similar to Cruft

Fastapi React
🚀 Cookiecutter Template for FastAPI + React Projects. Using PostgreSQL, SQLAlchemy, and Docker
Stars: ✭ 501 (+178.33%)
Mutual labels:  cookiecutter, boilerplate
Create Aio App
The boilerplate for aiohttp. Quick setup for your asynchronous web service.
Stars: ✭ 207 (+15%)
Mutual labels:  cookiecutter, boilerplate
Cookiecutter Fastapi
Cookiecutter template for FastAPI projects using: Machine Learning, Poetry, Azure Pipelines and Pytests
Stars: ✭ 89 (-50.56%)
Mutual labels:  cookiecutter, boilerplate
Cookie
A Template-based File Generator. Like cookiecutter but works with file templates instead of project templates.
Stars: ✭ 261 (+45%)
Mutual labels:  cookiecutter, boilerplate
Wagtail Pipit
Pipit is a Wagtail CMS boilerplate which aims to provide an easy and modern developer workflow with a React-rendered frontend.
Stars: ✭ 109 (-39.44%)
Mutual labels:  cookiecutter, boilerplate
Tsmean
Typescript-mysql-express-angular-node seed for your next web-app!
Stars: ✭ 173 (-3.89%)
Mutual labels:  boilerplate
React Native Redux Saga
Just a starter code to use redux and react-native with Login
Stars: ✭ 176 (-2.22%)
Mutual labels:  boilerplate
Vue Chrome Extension Boilerplate
Boilerplate for Chrome extension using Vue.js and Webpack with auto-reload enabled.
Stars: ✭ 171 (-5%)
Mutual labels:  boilerplate
Lad
👦 Lad is the best Node.js framework. Made by a former Express TC and Koa team member.
Stars: ✭ 2,112 (+1073.33%)
Mutual labels:  boilerplate
Express React Boilerplate
Express, MySQL, React/Redux, NodeJs Application Boilerplate
Stars: ✭ 179 (-0.56%)
Mutual labels:  boilerplate
React Extension Boilerplate
🚀 Modern React boilerplate for Firefox and Chrome extensions.
Stars: ✭ 177 (-1.67%)
Mutual labels:  boilerplate
Threejs Modern App
Boilerplate and utils for a fullscreen Three.js app
Stars: ✭ 176 (-2.22%)
Mutual labels:  boilerplate
Sugardough
A web application template based on Django.
Stars: ✭ 173 (-3.89%)
Mutual labels:  cookiecutter
Ran
⚡ RAN! React . GraphQL . Next.js Toolkit ⚡ - SEO-Ready, Production-Ready, SSR, Hot-Reload, CSS-in-JS, Caching, CLI commands and more...
Stars: ✭ 2,128 (+1082.22%)
Mutual labels:  boilerplate
Eth Vue
Featured in Awesome Vue [https://github.com/vuejs/awesome-vue], a curated list maintained by vuejs of awesome things related to the Vue.js framework, and Awesome List [https://awesomelists.net/150-Vue.js/3863-Open+Source/18749-DOkwufulueze-eth-vue], this Truffle Box provides everything you need to quickly build Ethereum dApps that have authentication features with vue, including configuration for easy deployment to the Ropsten Network. It's also Gravatar-enabled. Connecting to a running Ganache blockchain network from Truffle is also possible -- for fast development and testing purposes. Built on Truffle 5 and Vue 3, eth-vue uses vuex for state management, vuex-persist for local storage of app state, and vue-router for routing. Authentication functionalities are handled by Smart Contracts running on the Ethereum blockchain.
Stars: ✭ 171 (-5%)
Mutual labels:  boilerplate
Create flutter provider app
A boilerplate project created in Flutter using Provider and Firebase.
Stars: ✭ 180 (+0%)
Mutual labels:  boilerplate
Ignite
Infinite Red's cutting edge React Native project boilerplate, along with a CLI, component/model generators, and more!
Stars: ✭ 13,296 (+7286.67%)
Mutual labels:  boilerplate
Essential React
A minimal skeleton for building testable React apps using Babel
Stars: ✭ 2,035 (+1030.56%)
Mutual labels:  boilerplate
Reactnativeuniversal
A demonstration of sharing javascript react-native code between mobile, desktop and web environments
Stars: ✭ 178 (-1.11%)
Mutual labels:  boilerplate
Mern
🌐 MERN stack 2.0 - MongoDB, Express, React/Redux, Node
Stars: ✭ 175 (-2.78%)
Mutual labels:  boilerplate

cruft - Fight Back Against the Boilerplate Monster!


PyPI version Conda Version Build Status codecov Code style: black Imports: isort Join the chat at https://gitter.im/cruft/community License Downloads

Trending Contributors


Read Latest Documentation - Browse GitHub Code Repository


cruft allows you to maintain all the necessary boilerplate for packaging and building projects separate from the code you intentionally write. Fully compatible with existing Cookiecutter templates.

Creating new projects from templates using cruft is easy:

Example Usage New Project

And, so is updating them as the template changes overtime:

Example Usage New Project

Many project template utilities exist that automate the copying and pasting of code to create new projects. This seems great! However, once created, most leave you with that copy-and-pasted code to manage through the life of your project.

cruft is different. It automates the creation of new projects like the others, but then it also helps you to manage the boilerplate through the life of the project. cruft makes sure your code stays in-sync with the template it came from for you.

Key Features:

  • Cookiecutter Compatible: cruft utilizes Cookiecutter as its template expansion engine. Meaning it retains full compatibility with all existing Cookiecutter templates.
  • Template Validation: cruft can quickly validate whether or not a project is using the latest version of a template using cruft check. This check can easily be added to CI pipelines to ensure your projects stay in-sync.
  • Automatic Template Updates: cruft automates the process of updating code to match the latest version of a template, making it easy to utilize template improvements across many projects.

Installation:

To get started - install cruft using a Python package manager:

pip3 install cruft

OR

poetry add cruft

OR

pipenv install cruft

Creating a New Project:

To create a new project using cruft run cruft create PROJECT_URL from the command line.

For example:

    cruft create https://github.com/timothycrosley/cookiecutter-python/

cruft will then ask you any necessary questions to create your new project. It will use your answers to expand the provided template, and then return the directory it placed the expanded project. Behind the scenes, cruft uses Cookiecutter to do the project expansion. The only difference in the resulting output is a .cruft.json file that contains the git hash of the template used as well as the parameters specified.

Updating a Project

To update an existing project, that was created using cruft, run cruft update in the root of the project. If there are any updates, cruft will have you review them before applying. If you accept the changes cruft will apply them to your project and update the .cruft.json file for you.

!!! tip Sometimes certain files just aren't good fits for updating. Such as test cases or __init__ files. You can tell cruft to always skip updating these files on a project by project basis by added them to a skip section within your .cruft.json file:

    {
        "template": "https://github.com/timothycrosley/cookiecutter-python",
        "commit": "8a65a360d51250221193ed0ec5ed292e72b32b0b",
        "skip": [
            "cruft/__init__.py",
            "tests"
        ],
        ...
    }

Or, if you have toml installed, you can add skip files directly to a `tool.cruft` section of your `pyproject.toml` file:

    [tool.cruft]
    skip = ["cruft/__init__.py", "tests"]

Note that it is possible to use glob patterns for selecting the files to skip:
    {
        "skip": [
            "**/__init__.py",
            "tests/*"
        ],
        ...
    }

Checking a Project

Checking to see if a project is missing a template update is as easy as running cruft check. If the project is out-of-date an error and exit code 1 will be returned. cruft check can be added to CI pipelines to ensure projects don't unintentionally drift.

Linking an Existing Project

Have an existing project that you created from a template in the past using Cookiecutter directly? You can link it to the template that was used to create it using: cruft link TEMPLATE_REPOSITORY.

For example:

    cruft link https://github.com/timothycrosley/cookiecutter-python/

You can then specify the last commit of the template the project has been updated to be consistent with, or accept the default of using the latest commit from the template.

Compute the diff

With time, your boilerplate may end up being very different from the actual cookiecutter template. Cruft allows you to quickly see what changed in your local project compared to the template. It is as easy as running cruft diff. If any local file differs from the template, the diff will appear in your terminal in a similar fashion to git diff.

The cruft diff command optionally accepts an --exit-code flag that will make cruft exit with a non-0 code should any diff is found. You can combine this flag with the skip section of your .cruft.json to make stricter CI checks that ensures any improvement to the template is always submitted upstream.

Why Create cruft?

Since I first saw videos of quickly being used to automate Ubuntu application creation, I've had a love/hate relationship with these kinds of tools. I've used them for many projects and certainly seen them lead to productivity improvements. However, I've always felt like they were a double-edged sword. Sure, they would automate away the copying and pasting many would do to create projects. However, by doing so, they encouraged more code to be copied and pasted! Then, over time, you could easily be left with hundreds of projects that contained copy-and-pasted code with no way to easy way to update them. I created cruft to be a tool that recognized that balance between project creation and maintenance and provided mechanisms to keep built projects up-to-date.

I hope you too find cruft useful!

~Timothy Crosley

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