From 07794ee16352466a8033ff1741bf8f37defcd6ca Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Wed, 25 Mar 2026 15:05:12 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20rename=20app/app.py=20=E2=86=92=20stream?= =?UTF-8?q?lit=5Fapp.py=20to=20resolve=20package=20shadowing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- compose.override.yml | 1 + app/app.py => streamlit_app.py | 0 3 files changed, 3 insertions(+), 2 deletions(-) rename app/app.py => streamlit_app.py (100%) diff --git a/Dockerfile b/Dockerfile index ccb1cb2..7fa2cf3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,5 +11,5 @@ COPY snipe/ ./snipe/ WORKDIR /app/snipe RUN pip install --no-cache-dir -e . -EXPOSE 8506 -CMD ["streamlit", "run", "app/app.py", "--server.port=8506", "--server.address=0.0.0.0"] +EXPOSE 8509 +CMD ["streamlit", "run", "streamlit_app.py", "--server.port=8509", "--server.address=0.0.0.0"] diff --git a/compose.override.yml b/compose.override.yml index e588dbb..fc3e5e2 100644 --- a/compose.override.yml +++ b/compose.override.yml @@ -2,6 +2,7 @@ services: snipe: volumes: - ../circuitforge-core:/app/circuitforge-core + - ./streamlit_app.py:/app/snipe/streamlit_app.py - ./app:/app/snipe/app - ./data:/app/snipe/data environment: diff --git a/app/app.py b/streamlit_app.py similarity index 100% rename from app/app.py rename to streamlit_app.py