1.0.6 • Published 1 year ago

@portal-dx/plugin-deploy-schedule v1.0.6

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
1 year ago

img

@portal-dx/plugin-deploy-schedule

List the Deploys scheduled in Cronhooks in a simple way.

This plugin was created through the Backstage CLI

Requirements

Use

app-config.yaml

[...]

proxy:
  '/chronhooks':
    target: 'https://api.cronhooks.io/'
    changeOrigin: true
    allowedMethods: [GET, POST, PUT, DELETE]
    allowedHeaders: ['Authorization']
    pathRewrite:
      '^/api/proxy/chronhooks/': '/'
    headers:
      Authorization: ${TOKEN_CRONHOOKS}

[...]

routes.tsx

packages/app/src/routes.tsx

import { DeploySchedulePage } from '@portal-dx/plugin-deploy-schedule'

[...]

const routes = (
  <FlatRoutes>
  [...]
    <Route path="/deploy-schedule" element={<DeploySchedulePage />} />
  </FlatRoutes>
);

Developed with ❤️ by the MadeiraMadeira SRE Team