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
Print all the available configuration options, including their descriptions, default values, and current values. For more information about configuration options, see [`config.toml`](/develop/api-reference/configuration/config.toml).
Run the Hello app, an example Streamlit app included with the Streamlit library.
9
+
10
+
### Syntax
11
+
12
+
```
13
+
streamlit hello
14
+
```
15
+
16
+
### Options
17
+
18
+
The `hello` command accepts configuration options (just like the `run` command does). Configuration options are passed in the form of `--<section>.<option>=<value>`. For example, if you want to set the primary color of your app to blue, you could use one of the three equivalent options:
19
+
20
+
-`--theme.primaryColor=blue`
21
+
-`--theme.primaryColor="blue"`
22
+
-`--theme.primaryColor=#0000FF`
23
+
24
+
For a complete list of configuration options, see [`config.toml`](/develop/api-reference/configuration/config.toml) in the API reference. For examples, see below.
25
+
26
+
### Example
27
+
28
+
#### Example 1: Run the Hello app with default settings
29
+
30
+
To verify that Streamlit is installed correctly, this command runs an example app included in the Streamlit library. From any directory, execute the following:
31
+
32
+
```
33
+
streamlit hello
34
+
```
35
+
36
+
Streamlit will start the Hello app and open it in your default browser. The source for the Hello app can be [viewed in GitHub](https://github.com/streamlit/streamlit/tree/develop/lib/streamlit/hello).
37
+
38
+
#### Example 2: Run the Hello app with a custom config option value
39
+
40
+
To run the Hello app with a blue accent color, from any directory, execute the following:
0 commit comments