From 2a1ffdae9fa5acfb017b542571b3d07d45b35b4e Mon Sep 17 00:00:00 2001 From: Tim Hansen Date: Mon, 15 Mar 2021 14:33:30 -0600 Subject: [PATCH] Update wording for starting the backend Signed-off-by: Tim Hansen --- docs/features/software-catalog/installation.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/features/software-catalog/installation.md b/docs/features/software-catalog/installation.md index 19b4c73900..0f10005b0e 100644 --- a/docs/features/software-catalog/installation.md +++ b/docs/features/software-catalog/installation.md @@ -166,11 +166,14 @@ catalog: ### Running the Backend -Finally, start up the backend with the new configuration: +Finally, start up Backstage with the new configuration: ```bash +# Run from the root to start both backend and frontend +yarn dev + +# Alternatively, run only the backend from its own package cd packages/backend -# or `yarn dev` to run both frontend and backend yarn start ```