strapi-hook-patch-entreprise-edition

A Strapi startup hook that will patch your installation to unlock the Gold Entreprise Edition features

Usage no npm install needed!

<script type="module">
  import strapiHookPatchEntrepriseEdition from 'https://cdn.skypack.dev/strapi-hook-patch-entreprise-edition';
</script>

README

Strapi hook Patch Entreprise Edition

npm package npm downloads license

A Strapi startup hook that will patch your installation to unlock the Gold Entreprise Edition features.

At every Strapi startup, this hook will check if your installation is not patched yet and do its magic.

Compatible with Strapi v3.1.0+, tested and working on Strapi v3.5.0.

Unlocked Features

Screenshots

Screenshot 2

Screenshot 4

Screenshot 1

Screenshot 3

Install the patch

yarn add strapi-hook-patch-entreprise-edition

Set the following configuration in your ./config/hook.js file.

module.exports = {
  settings: {
    'patch-entreprise-edition': {
      enabled: true,
      timeout: 0,
      // revertPatch: true
    }
  }
}

Then, simply start your Strapi server as usual.

yarn strapi develop

A message will tell you if the patch was successful.

You Strapi installation was succesfully patched! 🏴‍☠️🏴‍☠️

You need to rebuild the Admin dashboard to reflect license changes.

yarn strapi build --clean

Your installation is now patched!

Uninstall the patch

Set the following configuration in your config/hook.js file.

module.exports = {
  settings: {
    'patch-entreprise-edition': {
      enabled: true,
      timeout: 0,
      revertPatch: true
    }
  }
}

Then, simply start your Strapi server as usual.

yarn strapi develop

A message will tell you if the unpatch was successful.

Your installation was succesfully unpatched! 👋👋

You need to rebuild the Admin dashboard to reflect license changes.

yarn strapi build --clean

Your installation is now unpatched!

License

The WTFPL License