Spaces:
Sleeping
Sleeping
File size: 630 Bytes
746d2f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
---
title: Configuration
slug: /develop/api-reference/configuration
---
# Configuration
<TileContainer>
<RefCard href="/develop/api-reference/configuration/config.toml">
<h4>Configuration file</h4>
Configures the default settings for your app.
```
your-project/
βββ .streamlit/
β βββ config.toml
βββ your_app.py
```
</RefCard>
<RefCard href="/develop/api-reference/configuration/st.set_page_config">
<h4>Set page title, favicon, and more</h4>
Configures the default settings of the page.
```python
st.set_page_config(
page_title="My app",
page_icon=":shark:",
)
```
</RefCard>
</TileContainer>
|