Create .streamlit/config.toml
Browse files- .streamlit/config.toml +8 -10
.streamlit/config.toml
CHANGED
|
@@ -1,20 +1,18 @@
|
|
| 1 |
[server]
|
| 2 |
-
headless = true
|
| 3 |
port = 7860
|
| 4 |
address = "0.0.0.0"
|
| 5 |
-
|
|
|
|
|
|
|
| 6 |
|
| 7 |
[browser]
|
| 8 |
gatherUsageStats = false
|
| 9 |
|
| 10 |
[theme]
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
secondaryBackgroundColor = "#F0F2F6"
|
| 15 |
textColor = "#262730"
|
| 16 |
|
| 17 |
-
[
|
| 18 |
-
|
| 19 |
-
installTracer = false
|
| 20 |
-
fixMatplotlib = true
|
|
|
|
| 1 |
[server]
|
|
|
|
| 2 |
port = 7860
|
| 3 |
address = "0.0.0.0"
|
| 4 |
+
headless = true
|
| 5 |
+
enableCORS = false
|
| 6 |
+
enableXsrfProtection = false
|
| 7 |
|
| 8 |
[browser]
|
| 9 |
gatherUsageStats = false
|
| 10 |
|
| 11 |
[theme]
|
| 12 |
+
primaryColor = "#1f77b4"
|
| 13 |
+
backgroundColor = "#ffffff"
|
| 14 |
+
secondaryBackgroundColor = "#f0f2f6"
|
|
|
|
| 15 |
textColor = "#262730"
|
| 16 |
|
| 17 |
+
[client]
|
| 18 |
+
toolbarMode = "minimal"
|
|
|
|
|
|