rename oss plugin listing page to directory.
Signed-off-by: Aramis Sennyey <aramiss@spotify.com>
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
---
|
||||
id: add-to-marketplace
|
||||
title: Add to Marketplace
|
||||
description: Documentation on Adding Plugin to Marketplace
|
||||
id: add-to-directory
|
||||
title: Add to Directory
|
||||
description: Documentation on Adding Plugin to Plugin Directory
|
||||
---
|
||||
|
||||
## Adding a Plugin to the Marketplace
|
||||
|
||||
To add a new plugin to the [plugin marketplace](https://backstage.io/plugins)
|
||||
To add a new plugin to the [plugin directory](https://backstage.io/plugins)
|
||||
create a file in
|
||||
[`microsite/data/plugins`](https://github.com/backstage/backstage/tree/master/microsite/data/plugins)
|
||||
with your plugin's information. Example:
|
||||
@@ -267,7 +267,7 @@
|
||||
"label": "Publishing",
|
||||
"items": [
|
||||
"plugins/publish-private",
|
||||
"plugins/add-to-marketplace",
|
||||
"plugins/add-to-directory",
|
||||
"plugins/observability"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -36,8 +36,8 @@ const Plugins = () => (
|
||||
<div
|
||||
className={clsx('container', 'padding--lg', pluginsStyles.onDemandPage)}
|
||||
>
|
||||
<div className="marketplaceBanner">
|
||||
<div className="marketplaceContent">
|
||||
<div className="communityBanner">
|
||||
<div className="communityContent">
|
||||
<h2>Community sessions</h2>
|
||||
|
||||
<p>
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
.onDemandPage {
|
||||
:global(.marketplaceBanner) {
|
||||
:global(.communityBanner) {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
:global(.marketplaceContent) {
|
||||
:global(.communityContent) {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
|
||||
@@ -102,9 +102,9 @@ const Plugins = () => {
|
||||
<div
|
||||
className={clsx('container', 'padding--lg', pluginsStyles.pluginsPage)}
|
||||
>
|
||||
<div className="marketplaceBanner">
|
||||
<div className="marketplaceContent">
|
||||
<h2>Plugin Marketplace</h2>
|
||||
<div className="directoryBanner">
|
||||
<div className="directoryContent">
|
||||
<h2>Plugin directory</h2>
|
||||
|
||||
<p>
|
||||
Open source plugins that you can add to your Backstage deployment.
|
||||
@@ -113,10 +113,10 @@ const Plugins = () => {
|
||||
</div>
|
||||
|
||||
<Link
|
||||
to="/docs/plugins/add-to-marketplace"
|
||||
to="/docs/plugins/add-to-directory"
|
||||
className="button button--outline button--primary"
|
||||
>
|
||||
Add to Marketplace
|
||||
Add to Directory
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
.pluginsPage {
|
||||
:global(.marketplaceBanner) {
|
||||
:global(.directoryBanner) {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
:global(.marketplaceContent) {
|
||||
:global(.directoryContent) {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -137,7 +137,7 @@ nav:
|
||||
- Testing with Jest: 'plugins/testing.md'
|
||||
- Publishing:
|
||||
- Publish private: 'plugins/publish-private.md'
|
||||
- Add to Marketplace: 'plugins/add-to-marketplace.md'
|
||||
- Add to Directory: 'plugins/add-to-directory.md'
|
||||
- Observability: 'plugins/observability.md'
|
||||
- Configuration:
|
||||
- Static Configuration in Backstage: 'conf/index.md'
|
||||
|
||||
Reference in New Issue
Block a user