From c477117b8435b9d82b0a57d405488b337f9a81da Mon Sep 17 00:00:00 2001 From: Kurt King Date: Tue, 22 Nov 2022 19:21:42 -0600 Subject: [PATCH 1/2] add cd command to documentation Signed-off-by: Kurt King --- docs/getting-started/contributors.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/getting-started/contributors.md b/docs/getting-started/contributors.md index 1bf3d6bc7d..aa60d99b8b 100644 --- a/docs/getting-started/contributors.md +++ b/docs/getting-started/contributors.md @@ -29,6 +29,7 @@ After you have cloned the Backstage repository, you should run the following commands once to set things up for development: ```bash +$ cd backstage # change to root directory of project $ yarn install # fetch dependency packages - may take a while $ yarn tsc # does a first run of type generation and checks From da15e9a56145459f18140e950c1a668188af39a9 Mon Sep 17 00:00:00 2001 From: Kurt King Date: Tue, 22 Nov 2022 19:26:02 -0600 Subject: [PATCH 2/2] reorganize commands Signed-off-by: Kurt King --- docs/getting-started/contributors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/contributors.md b/docs/getting-started/contributors.md index aa60d99b8b..cda53f8a54 100644 --- a/docs/getting-started/contributors.md +++ b/docs/getting-started/contributors.md @@ -30,8 +30,8 @@ commands once to set things up for development: ```bash $ cd backstage # change to root directory of project -$ yarn install # fetch dependency packages - may take a while +$ yarn install # fetch dependency packages - may take a while $ yarn tsc # does a first run of type generation and checks ```