Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Latest commit

 

History

History
29 lines (19 loc) · 1022 Bytes

create-a-plugin.md

File metadata and controls

29 lines (19 loc) · 1022 Bytes

Backstage Plugins

A Backstage Plugin adds functionality to Backstage.

Create a plugin

To create a new plugin, make sure you've run yarn install and installed dependencies, then run the following on your command line (invoking the backstage-cli).

yarn create-plugin

create plugin

This will create a new Backstage Plugin based on the ID that was provided. It will be built and added to the Backstage App automatically.

If yarn start is already running you should be able to see the default page for your new plugin directly by navigating to http://localhost:3000/my-plugin.

my plugin

Next Step - Structure of a plugin

Back to Getting Started