Add edit page, dialog based item page. Consider switching to popups.

This commit is contained in:
Cole Deck
2024-12-20 21:40:24 +00:00
parent 2a8de79adb
commit 27169ff8a0
16 changed files with 686 additions and 137 deletions

View File

@ -1,12 +1,8 @@
FROM python:3.11-slim
FROM python:3.13-slim
# Get runtime dependencies
# glx for OpenCV, ghostscript for datasheet PDF rendering, zbar for barcode scanning, git for cloning repos
#RUN apt-get update && apt-get install -y libgl1-mesa-glx ghostscript libzbar0 git && apt-get clean && rm -rf /var/lib/apt/lists
COPY requirements.txt ./
#COPY config-server.yml config.yml
RUN pip3 install -r requirements.txt
COPY *.py *.txt *.toml ./
COPY inventory ./inventory
CMD ["rio", "run", "--release", "--public", "--port", "8000"]
EXPOSE 8000
EXPOSE 8000