Add owner to hello_world plugin tutorial manifest (#131263)

* Fix link to developer examples in dev env setup guide
This commit is contained in:
Beth Richardson 2022-05-02 11:11:46 -05:00 committed by GitHub
parent 27d1fa1797
commit 264c310503
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -40,6 +40,10 @@ and add the following:
"id": "helloWorld",
"version": "1.0.0",
"kibanaVersion": "kibana",
"owner": {
"name": "Kibana Core",
"githubTeam": "kibana-core"
},
"ui": true
}
```
@ -77,6 +81,7 @@ And add the following to it:
```
$ mkdir public
$ cd public
$ touch plugin.tsx
```

View file

@ -72,7 +72,7 @@ In another terminal tab/window you can start Kibana.
yarn start
```
If you include the `--run-examples` flag then all of the [developer examples](https://github.com/elastic/kibana/tree/{branch}/examples). Read more about the advanced options for [Running Kibana](https://www.elastic.co/guide/en/kibana/current/running-kibana-advanced.html).
Include developer examples](https://github.com/elastic/kibana/tree/main/examples) by adding an optional `--run-examples` flag. Read more about the advanced options for [Running Kibana](https://www.elastic.co/guide/en/kibana/current/running-kibana-advanced.html).
## Code away!