2.0.3 • Published 2 years ago

@portaldx/plugin-deploy-schedule v2.0.3

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
2 years ago

img

@portaldx/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 '@portaldx/plugin-deploy-schedule'

[...]

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

Developed with ❤️ by the MadeiraMadeira SRE Team