Spaces:
Sleeping
Sleeping
Delete .streamlit
Browse files- .streamlit/config.toml +0 -91
- .streamlit/secrets.toml +0 -1
.streamlit/config.toml
DELETED
|
@@ -1,91 +0,0 @@
|
|
| 1 |
-
[theme]
|
| 2 |
-
# Primary accent color for interactive elements.
|
| 3 |
-
primaryColor = "#667eea"
|
| 4 |
-
|
| 5 |
-
# Background color for the main content area.
|
| 6 |
-
backgroundColor = "#ffffff"
|
| 7 |
-
|
| 8 |
-
# Background color used for the sidebar and most interactive widgets.
|
| 9 |
-
secondaryBackgroundColor = "#f0f2f6"
|
| 10 |
-
|
| 11 |
-
# Color used for almost all text.
|
| 12 |
-
textColor = "#262730"
|
| 13 |
-
|
| 14 |
-
# Font family for all text in the app, except code blocks. One of "sans serif", "serif", or "monospace".
|
| 15 |
-
font = "sans serif"
|
| 16 |
-
|
| 17 |
-
[server]
|
| 18 |
-
# List of folders that should not be watched for changes. This impacts both "Run on Save" and @st.cache.
|
| 19 |
-
# Relative paths will be taken as relative to the current working directory.
|
| 20 |
-
# Example: ['/home/user1/env', 'relative/path/to/folder']
|
| 21 |
-
folderWatchBlacklist = []
|
| 22 |
-
|
| 23 |
-
# Change the type of file watcher used by Streamlit, or turn it off completely.
|
| 24 |
-
# Allowed values: * "auto" : Streamlit will attempt to use the watchdog module, and falls back to polling if watchdog is not available. * "watchdog" : Force Streamlit to use the watchdog module. * "poll" : Force Streamlit to always use polling. * "none" : Streamlit will not watch files.
|
| 25 |
-
fileWatcherType = "auto"
|
| 26 |
-
|
| 27 |
-
# Symmetric key used to produce signed cookies. If deploying on multiple replicas, this should be set to the same value across all replicas to ensure they all share the same secret.
|
| 28 |
-
# Default: randomly generated secret key.
|
| 29 |
-
cookieSecret = ""
|
| 30 |
-
|
| 31 |
-
# If false, will attempt to open a browser window on start.
|
| 32 |
-
headless = false
|
| 33 |
-
|
| 34 |
-
# Automatically rerun script when the file is modified on disk.
|
| 35 |
-
runOnSave = false
|
| 36 |
-
|
| 37 |
-
# The address where the server will listen for client and browser connections. Use this if you want to bind the server to a specific address. If set, the server will only be accessible from this address, and not from any aliases (like localhost).
|
| 38 |
-
address = "0.0.0.0"
|
| 39 |
-
|
| 40 |
-
# The port where the server will listen for client and browser connections.
|
| 41 |
-
port = 8501
|
| 42 |
-
|
| 43 |
-
# The base path for the URL where Streamlit should be reachable from.
|
| 44 |
-
baseUrlPath = ""
|
| 45 |
-
|
| 46 |
-
# Enables support for Cross-Origin Resource Sharing (CORS) protection, for added security.
|
| 47 |
-
# Due to conflicts between CORS and XSRF, if `server.enableXsrfProtection` is on and `server.enableCORS` is off at the same time, we will prioritize `server.enableXsrfProtection`.
|
| 48 |
-
enableCORS = true
|
| 49 |
-
|
| 50 |
-
# Enables support for Cross-Site Request Forgery (XSRF) protection, for added security.
|
| 51 |
-
# Due to conflicts between CORS and XSRF, if `server.enableXsrfProtection` is on and `server.enableCORS` is off at the same time, we will prioritize `server.enableXsrfProtection`.
|
| 52 |
-
enableXsrfProtection = true
|
| 53 |
-
|
| 54 |
-
# Max size, in megabytes, for files uploaded through the file_uploader.
|
| 55 |
-
# Default: 200
|
| 56 |
-
maxUploadSize = 200
|
| 57 |
-
|
| 58 |
-
# Max size, in megabytes, of messages that can be sent via the WebSocket connection.
|
| 59 |
-
# Default: 200
|
| 60 |
-
maxMessageSize = 200
|
| 61 |
-
|
| 62 |
-
# Enables support for websocket compression.
|
| 63 |
-
# Default: false
|
| 64 |
-
enableWebsocketCompression = false
|
| 65 |
-
|
| 66 |
-
[browser]
|
| 67 |
-
# Whether to send usage statistics to Streamlit.
|
| 68 |
-
gatherUsageStats = true
|
| 69 |
-
|
| 70 |
-
# Configure the ability to share apps publicly via Streamlit Community Cloud.
|
| 71 |
-
# Should be set to one of these values: - "off" : always off. - "on" : always on. - "viewer" : on only when `streamlit run` is invoked with `streamlit run --client.showSidebarNavigation=false`.
|
| 72 |
-
serverAddress = "localhost"
|
| 73 |
-
|
| 74 |
-
# Whether to display a confirmation dialog when running a script containing st.pyplot().
|
| 75 |
-
# Default: true
|
| 76 |
-
showPyplotGlobalUse = true
|
| 77 |
-
|
| 78 |
-
# Define the ability to share apps publicly via Streamlit Community Cloud.
|
| 79 |
-
# Should be set to one of these values: - "off" : always off. - "on" : always on. - "viewer" : on only when `streamlit run` is invoked with `streamlit run --client.showSidebarNavigation=false`.
|
| 80 |
-
serverPort = 8501
|
| 81 |
-
|
| 82 |
-
[mapbox]
|
| 83 |
-
# Configure Mapbox token. To get a token for yourself, create an account at https://mapbox.com and follow the guide at https://docs.mapbox.com/help/how-mapbox-works/access-tokens/ to create a token with the scopes 'styles:tiles', 'fonts:read', and 'datasets:read'.
|
| 84 |
-
token = ""
|
| 85 |
-
|
| 86 |
-
[deprecation]
|
| 87 |
-
# Set to false to disable the deprecation warning for the file_uploader encoding.
|
| 88 |
-
showfileUploaderEncoding = true
|
| 89 |
-
|
| 90 |
-
# Set to false to disable the deprecation warning for using the global pyplot instance.
|
| 91 |
-
showPyplotGlobalUse = true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.streamlit/secrets.toml
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
GROQ_API_KEY = "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"
|
|
|
|
|
|