Spaces:
Sleeping
Sleeping
Upload config.toml
Browse files- .streamlit/config.toml +31 -0
.streamlit/config.toml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# .streamlit/config.toml
|
| 2 |
+
|
| 3 |
+
[server]
|
| 4 |
+
# Server settings
|
| 5 |
+
port = 8501
|
| 6 |
+
enableCORS = false
|
| 7 |
+
enableXsrfProtection = false
|
| 8 |
+
maxUploadSize = 200 # MB
|
| 9 |
+
|
| 10 |
+
[browser]
|
| 11 |
+
# Browser settings
|
| 12 |
+
gatherUsageStats = false
|
| 13 |
+
|
| 14 |
+
[theme]
|
| 15 |
+
# Theme settings (Dark theme with green accent)
|
| 16 |
+
primaryColor = "#a6e3a1"
|
| 17 |
+
backgroundColor = "#11111b"
|
| 18 |
+
secondaryBackgroundColor = "#1e1e2e"
|
| 19 |
+
textColor = "#cdd6f4"
|
| 20 |
+
font = "sans serif"
|
| 21 |
+
|
| 22 |
+
[runner]
|
| 23 |
+
# Performance settings
|
| 24 |
+
magicEnabled = true
|
| 25 |
+
installTracer = false
|
| 26 |
+
fixMatplotlib = true
|
| 27 |
+
|
| 28 |
+
[client]
|
| 29 |
+
# Client settings
|
| 30 |
+
showErrorDetails = true
|
| 31 |
+
toolbarMode = "minimal"
|