docs: add plugin create guide

This commit is contained in:
Kingkor Roy Tirtho 2025-08-11 21:03:28 +06:00
parent 7bb69c02de
commit b3f6824a94

View File

@ -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