Create .streamlit/config.toml
Browse files- .streamlit/config.toml +22 -0
.streamlit/config.toml
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[theme]
|
2 |
+
base="dark"
|
3 |
+
|
4 |
+
[server]
|
5 |
+
enableCORS = false
|
6 |
+
runOnSave = true
|
7 |
+
headless = true
|
8 |
+
enableXsrfProtection = true
|
9 |
+
maxUploadSize = 100
|
10 |
+
|
11 |
+
[runner]
|
12 |
+
magicEnabled = true
|
13 |
+
|
14 |
+
[browser]
|
15 |
+
gatherUsageStats = true
|
16 |
+
serverAddress = "0.0.0.0"
|
17 |
+
|
18 |
+
[logger]
|
19 |
+
level = "debug"
|
20 |
+
|
21 |
+
[global]
|
22 |
+
showWarningOnDirectExecution = true
|