diff --git a/contribute/developer-guide.md b/contribute/developer-guide.md index 6ed40a72edb..45805f71fb3 100644 --- a/contribute/developer-guide.md +++ b/contribute/developer-guide.md @@ -101,11 +101,12 @@ If you want to contribute to any of the plugins listed below (that are found wit - grafana-postgresql-datasource - grafana-pyroscope-datasource - grafana-testdata-datasource -- jaegar +- jaeger - mysql - parca - tempo - zipkin +- loki To build and watch all these plugins you can run the following command. Note this can be quite resource intensive as it will start separate build processes for each plugin. @@ -119,6 +120,16 @@ If, instead, you would like to build and watch a specific plugin you can run the yarn workspace dev ``` +If you want to run multiple specific plugins, you can use the following command. + +``` +yarn nx run-many -t dev --projects="@grafana-plugins/grafana-azure-monitor-datasource,@grafana-plugins/jaeger" +``` + +If you're unsure of the name of the plugins you'd like to run you can query nx with the following command to get a list of all plugins: + +`yarn nx show projects --projects="@grafana-plugins/*"` + Next, we'll explain how to build and run the web server that serves these frontend assets. ### Backend