Put getting started back in README

This commit is contained in:
Stefan Ålund
2020-03-15 21:28:29 +01:00
parent 2da3b853e6
commit 6176817502
4 changed files with 28 additions and 34 deletions
-2
View File
@@ -2,8 +2,6 @@
Here is a collection of tutorials that will guide you through setting up and extending an instance of Backstage with your own plugins.
- [Set up the environment](set-up-environment.md)
- [Create/Run an instance of Backstage](create-run-an-instance.md)
- [Create a Backstage plugin](create-a-plugin.md)
- [Structure of a plugin](structure-of-a-plugin.md)
- Using Backstage components (TODO)
@@ -1,15 +0,0 @@
# Run an instance of Backstage
Open a terminal window and start the web app using the following commands from the project root:
```bash
$ yarn # may take a while
$ yarn start
```
The final `yarn start` command should open a local instance of Backstage in your browser, otherwise open one of the URLs printed in the terminal.
[Next step - Create a Backstage plugin](./create-a-plugin.md)
[Back to Getting Started](README.md)
@@ -1,11 +0,0 @@
### Set up environment
To run the frontend, you will need to have the following installed:
- [git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
- [NodeJS](https://nodejs.org/en/download/) - Active LTS Release, currently v12
- [yarn](https://classic.yarnpkg.com/en/docs/install)
[Next step - Run an instance of the Backstage app](./create-run-an-instance.md)
[Back to Getting Started](README.md)