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.

45 lines
1.4 KiB

# Grafana Panel Plugin Template
2 years ago
[![Build](https://github.com/grafana/grafana-starter-panel/workflows/CI/badge.svg)](https://github.com/grafana/grafana-starter-panel/actions?query=workflow%3A%22CI%22)
2 years ago
This template is a starting point for building Grafana Panel Plugins in Grafana 7.0+
2 years ago
## What is Grafana Panel Plugin?
2 years ago
Panels are the building blocks of Grafana. They allow you to visualize data in different ways. While Grafana has several types of panels already built-in, you can also build your own panel, to add support for other visualizations.
2 years ago
For more information about panels, refer to the documentation on [Panels](https://grafana.com/docs/grafana/latest/features/panels/panels/)
2 years ago
## Getting started
2 years ago
1. Install dependencies
2 years ago
```bash
yarn install
```
2 years ago
2. Build plugin in development mode or run in watch mode
2 years ago
```bash
yarn dev
```
2 years ago
or
2 years ago
```bash
yarn watch
```
2 years ago
3. Build plugin in production mode
2 years ago
```bash
yarn build
```
2 years ago
## Learn more
2 years ago
- [Build a panel plugin tutorial](https://grafana.com/tutorials/build-a-panel-plugin)
- [Grafana documentation](https://grafana.com/docs/)
- [Grafana Tutorials](https://grafana.com/tutorials/) - Grafana Tutorials are step-by-step guides that help you make the most of Grafana
- [Grafana UI Library](https://developers.grafana.com/ui) - UI components to help you build interfaces using Grafana Design System