Skip to content

Commit

Permalink
feat(home): add link to Kanboard (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
hairmare authored Jun 15, 2023
1 parent 2cf8187 commit 97599a1
Show file tree
Hide file tree
Showing 9 changed files with 1,930 additions and 1,962 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ node_modules
packages/*/node_modules
plugins
*.local.yaml
vuln.json
2 changes: 1 addition & 1 deletion backstage.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "1.14.1"
"version": "1.14.2"
}
2 changes: 1 addition & 1 deletion catalog-info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
title: RaBe Backstage
description: |
All-in-one Backstage app for RaBe.
annotations:
annotations:
github.com/project-slug: radiorabe/rabe-backstage
backstage.io/techdocs-ref: dir:.
spec:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"devDependencies": {
"@backstage/cli": "^0.22.7",
"@spotify/prettier-config": "^14.1.5",
"@spotify/prettier-config": "^15.0.0",
"concurrently": "^7.6.0",
"lerna": "^6.5.0",
"node-gyp": "^9.0.0",
Expand Down
12 changes: 6 additions & 6 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@
},
"devDependencies": {
"@backstage/test-utils": "^1.3.1",
"@testing-library/dom": "^8.0.0",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.0.0",
"@types/node": "^18.13.0",
"@types/react-dom": "18.0.10",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^20.3.1",
"@types/react-dom": "^18.2.5",
"cross-env": "^7.0.0",
"cypress": "^12.5.1",
"eslint-plugin-cypress": "^2.10.3",
Expand Down
1 change: 1 addition & 0 deletions packages/app/src/apis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export const apis: AnyApiFactory[] = [
},
factory: ({ discoveryApi, oauthRequestApi, configApi }) =>
OAuth2.create({
configApi,
discoveryApi,
oauthRequestApi,
provider: {
Expand Down
6 changes: 6 additions & 0 deletions packages/app/src/components/home/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React from 'react';
import { Grid } from '@material-ui/core';
import { Content, Header, Page } from '@backstage/core-components';
import LocalLibrary from '@material-ui/icons/LocalLibrary';
import Assignment from '@material-ui/icons/Assignment';
import {
HomePageToolkit,
HomePageRandomJoke,
Expand Down Expand Up @@ -32,6 +33,11 @@ const toolkitTools = [
url: 'https://wiki.rabe.ch',
label: 'RaBe Wiki',
icon: <LocalLibrary />,
},
{
url: 'https://board.rabe.ch',
label: 'Kanboard',
icon: <Assignment />,
}
]

Expand Down
10 changes: 5 additions & 5 deletions packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@backstage/plugin-tech-insights-backend": "^0.5.11",
"@backstage/plugin-tech-insights-backend-module-jsonfc": "^0.1.29",
"@backstage/plugin-techdocs-backend": "^1.6.2",
"@janus-idp/backstage-plugin-keycloak-backend": "^1.3.7",
"@janus-idp/backstage-plugin-keycloak-backend": "^1.3.9",
"app": "link:../app",
"better-sqlite3": "^8.0.0",
"dockerode": "^3.3.1",
Expand All @@ -50,10 +50,10 @@
},
"devDependencies": {
"@backstage/cli": "^0.22.7",
"@types/dockerode": "^3.3.0",
"@types/express": "^4.17.6",
"@types/express-serve-static-core": "^4.17.5",
"@types/luxon": "^3.2.0"
"@types/dockerode": "^3.3.19",
"@types/express": "^4.17.17",
"@types/express-serve-static-core": "^4.17.35",
"@types/luxon": "^3.3.0"
},
"files": [
"dist"
Expand Down
Loading

0 comments on commit 97599a1

Please sign in to comment.