Make yarn install explicit and delete leading $ for shell commands

Signed-off-by: Otto Sichert <git@ottosichert.de>
This commit is contained in:
Otto Sichert
2021-06-02 10:59:17 +02:00
parent 1ddf551f4e
commit a54fdab36e
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -9,14 +9,14 @@ You can use the flag `--skip-install` to skip the install.
With `npx`:
```sh
$ npx @backstage/create-app
npx @backstage/create-app
```
With a local clone of this repo, from the main `create-app/` folder, run:
```sh
$ yarn
$ yarn backstage-create-app
yarn install
yarn backstage-create-app
```
## Documentation
@@ -5,6 +5,6 @@ This is your newly scaffolded Backstage App, Good Luck!
To start the app, run:
```sh
$ yarn
$ yarn dev
yarn install
yarn dev
```