Spaces:
Sleeping
Sleeping
Create .streamlit/config.toml
Browse files- .streamlit/config.toml +28 -0
.streamlit/config.toml
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[server]
|
| 2 |
+
maxUploadSize = 2000
|
| 3 |
+
enableCORS = false
|
| 4 |
+
enableXsrfProtection = false
|
| 5 |
+
headless = true
|
| 6 |
+
maxMessageSize = 2000
|
| 7 |
+
port = 8501
|
| 8 |
+
|
| 9 |
+
[client]
|
| 10 |
+
caching = "never"
|
| 11 |
+
showErrorDetails = true
|
| 12 |
+
|
| 13 |
+
[deprecation]
|
| 14 |
+
showfileUploaderEncoding = false
|
| 15 |
+
|
| 16 |
+
[global]
|
| 17 |
+
dataFrameSerialization = "legacy"
|
| 18 |
+
|
| 19 |
+
[runner]
|
| 20 |
+
magicEnabled = true
|
| 21 |
+
fastReruns = true
|
| 22 |
+
enforceSerializableSessionState = false
|
| 23 |
+
|
| 24 |
+
[theme]
|
| 25 |
+
base = "light"
|
| 26 |
+
|
| 27 |
+
[logger]
|
| 28 |
+
level = "debug"
|