-
Notifications
You must be signed in to change notification settings - Fork 402
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: move most of the plugins to new backend system
- Loading branch information
Showing
85 changed files
with
4,819 additions
and
6,268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
'@roadiehq/plugin-scaffolder-frontend-module-http-request-field': patch | ||
'@roadiehq/scaffolder-backend-module-http-request': patch | ||
'@roadiehq/scaffolder-backend-module-utils': patch | ||
'@roadiehq/scaffolder-backend-module-aws': patch | ||
'@roadiehq/backstage-plugin-github-pull-requests': patch | ||
'@roadiehq/scaffolder-backend-argocd': patch | ||
'@roadiehq/backstage-plugin-security-insights': patch | ||
'@roadiehq/rag-ai-backend-retrieval-augmenter': patch | ||
'@roadiehq/backstage-plugin-github-insights': patch | ||
'@roadiehq/backstage-plugin-argo-cd-backend': patch | ||
'@roadiehq/rag-ai-backend-embeddings-openai': patch | ||
'@roadiehq/rag-ai-backend-embeddings-aws': patch | ||
'@roadiehq/backstage-plugin-aws-lambda': patch | ||
'@roadiehq/backstage-plugin-cloudsmith': patch | ||
'@roadiehq/backstage-plugin-prometheus': patch | ||
'@roadiehq/catalog-backend-module-okta': patch | ||
'@roadiehq/backstage-plugin-buildkite': patch | ||
'@roadiehq/backstage-plugin-travis-ci': patch | ||
'@roadiehq/backstage-plugin-home-markdown': patch | ||
'@roadiehq/catalog-backend-module-aws': patch | ||
'@roadiehq/backstage-plugin-shortcut': patch | ||
'@roadiehq/backstage-plugin-aws-auth': patch | ||
'@roadiehq/backstage-plugin-argo-cd': patch | ||
'@roadiehq/backstage-plugin-bugsnag': patch | ||
'@roadiehq/backstage-plugin-datadog': patch | ||
'@roadiehq/backstage-plugin-iframe': patch | ||
'@roadiehq/rag-ai-storage-pgvector': patch | ||
'@roadiehq/roadie-backstage-entity-validator': patch | ||
'@roadiehq/backstage-plugin-jira': patch | ||
'@roadiehq/backstage-plugin-home-rss': patch | ||
'@roadiehq/backstage-plugin-aws-backend': patch | ||
'@roadiehq/backstage-plugin-aws': patch | ||
'@roadiehq/rag-ai-backend': patch | ||
'@roadiehq/rag-ai-node': patch | ||
'@roadiehq/rag-ai': patch | ||
'backend': patch | ||
'app': patch | ||
--- | ||
|
||
Convert to support the new backend system |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"version": "1.23.4" | ||
"version": "1.24.2" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,4 @@ | |
*/ | ||
|
||
export * from './service/router'; | ||
export { roadieAwsBackendPlugin as default } from './plugin'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* Copyright 2024 Larder Software Limited | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
import { | ||
coreServices, | ||
createBackendPlugin, | ||
} from '@backstage/backend-plugin-api'; | ||
import { createRouter } from './service/router'; | ||
|
||
export const roadieAwsBackendPlugin = createBackendPlugin({ | ||
pluginId: 'roadie-aws-backend', | ||
register(reg) { | ||
reg.registerInit({ | ||
deps: { | ||
httpRouter: coreServices.httpRouter, | ||
config: coreServices.rootConfig, | ||
logger: coreServices.logger, | ||
}, | ||
async init({ config, httpRouter, logger }) { | ||
const router = await createRouter({ | ||
config, | ||
logger, | ||
}); | ||
httpRouter.use(router); | ||
}, | ||
}); | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
plugins/backend/backstage-plugin-argo-cd-backend/src/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
export * from './service/router'; | ||
export { ArgoService } from './service/argocd.service'; | ||
export * from './lib'; | ||
export { roadieArgoCdBackendPlugin as default } from './plugin'; |
Oops, something went wrong.