From a290265e5445884c97de56a50545d9d1d02e19e2 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Mon, 24 Feb 2020 14:51:34 +0100 Subject: [PATCH] frontend/README: update instructions for adding plugin --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ebeabe6b0c..2341dee85d 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,13 @@ In [packages/app/src/plugins.ts](frontend/packages/app/src/plugins.ts), add the export { default as MyPlugin } from '@spotify-backstage/plugin-my-plugin'; ``` -You should now be able to see the default plugin page at [localhost:3000/my-plugin](http://localhost:3000/my-plugin) if you're serving the frontend. +To apply the above changes, go to the `frontend/` directory and run: + +``` +$ yarn +``` + +Now start or restart `yarn start`, and you should be able to see the default page for your new plugin at [localhost:3000/my-plugin](http://localhost:3000/my-plugin). ## Protobuf Definitions