You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dev_docs/getting_started/setting_up_a_development_env.mdx
+46Lines changed: 46 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,52 @@ yarn start
78
78
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).
79
79
You will find the development server running on (http://localhost:5601) - and you can log in with the `elastic:changeme` credential pair.
80
80
81
+
### Stateful startup options
82
+
83
+
The following combinations cover the most common local development scenarios.
84
+
85
+
**Default** — both SAML and basic login are supported; SAML is the default:
86
+
87
+
```sh
88
+
yarn es snapshot
89
+
yarn start
90
+
```
91
+
92
+
**Without SAML login** — only basic login:
93
+
94
+
```sh
95
+
yarn es snapshot
96
+
yarn start --mockIdpPlugin.enabled=false
97
+
```
98
+
99
+
**Basic license** — only basic login is supported:
100
+
101
+
```sh
102
+
yarn es snapshot --license basic
103
+
yarn start --mockIdpPlugin.enabled=false
104
+
```
105
+
106
+
**No base path** — basic license, basic login, no random dev basepath:
0 commit comments