Merge pull request #5879 from backstage/ottos/how-to-start

Add CLI output and README how to start app after create-app CLI
This commit is contained in:
Otto Sichert
2021-06-02 14:55:37 +02:00
committed by GitHub
4 changed files with 16 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/create-app': patch
---
Add CLI output and README how to start app after create-app CLI
+3 -2
View File
@@ -9,13 +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 backstage-create-app
yarn install
yarn backstage-create-app
```
## Documentation
+1
View File
@@ -148,6 +148,7 @@ export default async (cmd: Command): Promise<void> => {
);
Task.log();
Task.section('All set! Now you might want to');
Task.log(` Run the app: ${chalk.cyan(`cd ${answers.name} && yarn dev`)}`);
Task.log(
' Set up the software catalog: https://backstage.io/docs/features/software-catalog/configuration',
);
@@ -1,3 +1,10 @@
# [Backstage](https://backstage.io)
This is your newly scaffolded Backstage App, Good Luck!
To start the app, run:
```sh
yarn install
yarn dev
```