fix: rename app/app.py → streamlit_app.py to resolve package shadowing

This commit is contained in:
pyr0ball 2026-03-25 15:05:12 -07:00
parent 6ec0f957b9
commit 07794ee163
3 changed files with 3 additions and 2 deletions

View file

@ -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"]

View file

@ -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: