From b3f6824a94f84c3c1cb1fcd5ab54548e1aa7661b Mon Sep 17 00:00:00 2001 From: Kingkor Roy Tirtho Date: Mon, 11 Aug 2025 21:03:28 +0600 Subject: [PATCH] docs: add plugin create guide --- .../create-your-first-plugin.mdx | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 website/src/content/docs/developing-plugins/create-your-first-plugin.mdx diff --git a/website/src/content/docs/developing-plugins/create-your-first-plugin.mdx b/website/src/content/docs/developing-plugins/create-your-first-plugin.mdx new file mode 100644 index 00000000..8ea9d4d2 --- /dev/null +++ b/website/src/content/docs/developing-plugins/create-your-first-plugin.mdx @@ -0,0 +1,24 @@ +--- +layout: "layouts/DocLayout.astro" +title: Create your first plugin +description: "" +order: 1 +--- + +If you are comfortable with Dart, Flutter and Hetu Script, you can start developing your first plugin. +This guide will help you initialize a plugin project and write your first plugin. + +## Initializing a plugin project + +[spotube-plugin-template][spotube-plugin-template] is a template repository for Spotube plugins. It's a starting point +with everything you need to get started with plugin development. You should use it to create your own plugin. + +Simply clone or click "Use this template" button on the repository page to create a new repository. + +```bash +$ git clone https://github.com/KRTirtho/spotube-plugin-template.git +$ cd spotube-plugin-template +``` + +{/* Links */} +[spotube-plugin-template]: https://github.com/KRTirtho/spotube-plugin-template