You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Ugo Finnendahl c22b2b8ccd first version 2 months ago
..
src first version 2 months ago
.editorconfig first version 2 months ago
.gitattributes first version 2 months ago
.gitignore first version 2 months ago
LICENSE.md first version 2 months ago
README.md first version 2 months ago
SECURITY.md first version 2 months ago
composer.json first version 2 months ago
index.css first version 2 months ago
index.js first version 2 months ago
index.php first version 2 months ago
package-lock.json first version 2 months ago
package.json first version 2 months ago

README.md

Kirby Pluginkit: Example plugin for Kirby

Variant "Panel plugin setup"

This is a boilerplate for a Kirby Panel plugin that can be installed via all three supported installation methods.

You can find a list of Pluginkit variants on the master branch.


How to use the Pluginkit

  1. Fork this repository
  2. Change the plugin name and description in the composer.json
  3. Change the plugin name in the index.php and src/index.js
  4. Change the license if you don't want to publish under MIT
  5. Add your plugin code to the index.php and src/index.js
  6. Update this README with instructions for your plugin

Install the development and build setup

We use kirbyup for the development and build setup.

You can start developing directly. kirbyup will be fetched remotely with your first npm run command, which may take a short amount of time.

Development

You can start the dev process with:

npm run dev

This will automatically update the index.js and index.css of your plugin as soon as you make changes. Reload the Panel to see your code changes reflected.

With kirbyup 2.0.0+ and Kirby 3.7.4+ you can alternatively use hot module reloading (HMR):

npm run serve

This will start a development server that updates the page as soon as you make changes. Some updates are instant, like CSS or Vue template changes, others require a reload of the page, which happens automatically.

[!NOTE] The live reload functionality requires top level await, which is only supported in modern browsers. If you're developing in older browsers, use npm run dev and reload the page manually to see changes.

Production

As soon as you are happy with your plugin, you should build the final version with:

npm run build

This will automatically create a minified and optimized version of your index.js and index.css which you can ship with your plugin.

We have a tutorial on how to build your own plugin based on the Pluginkit in the Kirby documentation.

Build reproducibility

While kirbyup will stay backwards compatible, exact build reproducibility may be of importance to you. If so, we recommend to target a specific package version, rather than using npx:

{
  "scripts": {
    "dev": "kirbyup src/index.js --watch",
    "build": "kirbyup src/index.js"
  },
  "devDependencies": {
    "kirbyup": "^3.1.0"
  }
}

What follows is an example README for your plugin.


Installation

Download

Download and copy this repository to /site/plugins/{{ plugin-name }}.

Git submodule

git submodule add https://github.com/{{ your-name }}/{{ plugin-name }}.git site/plugins/{{ plugin-name }}

Composer

composer require {{ your-name }}/{{ plugin-name }}

Setup

Additional instructions on how to configure the plugin (e.g. blueprint setup, config options, etc.)

Options

Document the options and APIs that this plugin offers

Development

Add instructions on how to help working on the plugin (e.g. npm setup, Composer dev dependencies, etc.)

License

MIT

Credits