Alper Altay

Results 25 comments of Alper Altay

Im on the same team as @marcpalm. Just commenting our backstage info here: ``` OS: Darwin 23.4.0 - darwin/arm64 node: v20.11.1 yarn: 4.1.1 cli: 0.26.4 (installed) backstage: 1.26.5 Dependencies: @backstage/app-defaults...

Reproduction steps on the demo site: 1. add this to the package.json of the `app` ```json "@vitejs/plugin-react": "^4.0.4", "vite": "^4.4.9", "vite-plugin-html": "^3.2.0", "vite-plugin-node-polyfills": "^0.21.0" ``` 2. run `yarn install` 3....

@vinzscam with the addition of the "help wanted" tag, is it safe to assume our proposed change is fine?

> Totally want something like this too! A floating one is nice for pages but it gets a bit tricker when you consider pages with multiple plugins like the entity...

I'd love to start the work on this. But not sure i have the time. If others would like to chip in, feel free :)

> Our existing plugin boundary component would help out creating the targets to highlight and select as part of that. @Rugvip could you point me in a direction for this?...

> @alper98 best place to experiment right now would be to try making this part of the existing system where we wrap extension components: > > https://github.com/backstage/backstage/blob/bf65f1c80f6aa96ed3f2e3e73deb087a501bb254/packages/core-plugin-api/src/extensions/extensions.tsx#L260 > > The...

Sorry, have had zero time to have a look at this. If anyone wants to help, or take over. Please feel free. This will be an awesome feature, if it...

I have this setup for the catalog: ```ts const backend = createBackend(); // custom services backend.add(import('./services/logger')); backend.add(import('./services/httpRouter')); // catalog backend.add(import('@backstage/plugin-catalog-backend/alpha')); backend.add(import('@backstage/plugin-catalog-backend-module-unprocessed')); backend.add(import('@backstage/plugin-catalog-backend-module-github/alpha')); backend.add(import('@internal/backstage-plugin-catalog-backend-module-msgraph')); backend.add(import('@internal/backstage-plugin-catalog-backend-module-tools')); backend.add( import('@internal/backstage-plugin-catalog-backend-module-communities'), ); backend.add( import('@backstage/plugin-catalog-backend-module-scaffolder-entity-model'), );...