Commit ·
d19b4e7
1
Parent(s): 4117079
start
Browse files- {streamlit → .streamlit}/config.toml +1 -0
- Dockerfile +1 -1
- __pycache__/app.cpython-312.pyc +0 -0
- streamlit_output.log +8 -0
{streamlit → .streamlit}/config.toml
RENAMED
|
@@ -3,6 +3,7 @@ port = 7860
|
|
| 3 |
address = "0.0.0.0"
|
| 4 |
enableCORS = false
|
| 5 |
enableXsrfProtection = false
|
|
|
|
| 6 |
headless = true
|
| 7 |
|
| 8 |
[browser]
|
|
|
|
| 3 |
address = "0.0.0.0"
|
| 4 |
enableCORS = false
|
| 5 |
enableXsrfProtection = false
|
| 6 |
+
enableWebsocketCompression = false
|
| 7 |
headless = true
|
| 8 |
|
| 9 |
[browser]
|
Dockerfile
CHANGED
|
@@ -7,4 +7,4 @@ RUN chmod -R 777 /app
|
|
| 7 |
# Hugging Face Spaces ВСЕГДА слушает порт 7860
|
| 8 |
EXPOSE 7860
|
| 9 |
# Эта команда — ключ к успеху. Без этих флагов будет "вечная загрузка"
|
| 10 |
-
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.enableCORS=false", "--server.enableXsrfProtection=false", "--server.headless=true"]
|
|
|
|
| 7 |
# Hugging Face Spaces ВСЕГДА слушает порт 7860
|
| 8 |
EXPOSE 7860
|
| 9 |
# Эта команда — ключ к успеху. Без этих флагов будет "вечная загрузка"
|
| 10 |
+
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.enableCORS=false", "--server.enableXsrfProtection=false", "--server.enableWebsocketCompression=false", "--server.headless=true"]
|
__pycache__/app.cpython-312.pyc
CHANGED
|
Binary files a/__pycache__/app.cpython-312.pyc and b/__pycache__/app.cpython-312.pyc differ
|
|
|
streamlit_output.log
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
You can now view your Streamlit app in your browser.
|
| 3 |
+
|
| 4 |
+
Local URL: http://localhost:7861
|
| 5 |
+
Network URL: http://192.168.1.77:7861
|
| 6 |
+
External URL: http://109.252.49.171:7861
|
| 7 |
+
|
| 8 |
+
2026-03-22 12:33:21.263 An update to the [server] config option section was detected. To have these changes be reflected, please restart streamlit.
|