Welcome to the AzureStorage
plugin!
This plugin helps to explore (navigate and download) the blobs in Azure storage account.
This plugin needs to be added to an existing backstage instance.
# From your Backstage root directory
yarn --cwd packages/backend add @backstage-community/plugin-azure-storage-explorer
Add the following lines in packages/app/src/App.tsx
to create new route
import { AzureStoragePage } from 'backstage-plugin-azure-storage';
const routes = (
<FlatRoutes>
{/* ...other routes */}
<Route path="/azure-storage" element={<AzureStoragePage />} />
{/* ...other routes */}
</FlatRoutes>
);
Add the following line in packages/app/src/components/Root/Root.tsx
to create a new element in the Sidebar
import FolderIcon from '@material-ui/icons/Folder';
<SidebarPage>
{/* ...other contents */}
<SidebarItem
icon={FolderIcon}
to="azure-storage"
text="Azure Storage Explorer"
/>
{/* ...other contents */}
</SidebarPage>;
This plugin needs to be added to an existing backstage instance. Uou can find the instructions in Readme.md.