Rename requirements-webui -> requirements.txt

This commit is contained in:
Antti Kettunen 2026-04-17 20:08:21 +03:00
parent 64d9db57ea
commit c34fb10881
4 changed files with 7 additions and 7 deletions

View file

@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
RUN python -m venv /opt/venv RUN python -m venv /opt/venv
ENV PATH="/opt/venv/bin:$PATH" ENV PATH="/opt/venv/bin:$PATH"
COPY requirements-webui.txt . COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade pip && \ RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements-webui.txt pip install --no-cache-dir -r requirements.txt
# Stage 2: Runtime — only runtime dependencies, no build tools # Stage 2: Runtime — only runtime dependencies, no build tools
FROM python:3.11-slim FROM python:3.11-slim

View file

@ -219,7 +219,7 @@ PUID/PGID are exposed in the template — set them to match your Unraid permissi
```bash ```bash
git clone https://github.com/Nezreka/SoulSync git clone https://github.com/Nezreka/SoulSync
cd SoulSync cd SoulSync
pip install -r requirements-webui.txt pip install -r requirements.txt
python web_server.py python web_server.py
# Open http://localhost:8008 # Open http://localhost:8008
``` ```

View file

@ -1,7 +1,7 @@
# SoulSync development requirements # SoulSync development requirements
# Runtime web dependencies + test runner # Runtime web dependencies + test runner
-r requirements-webui.txt -r requirements.txt
# Test runner # Test runner
pytest>=9.0.0 pytest>=9.0.0

View file

@ -1,5 +1,5 @@
# SoulSync WebUI Requirements # SoulSync requirements
# Docker-compatible requirements without PyQt6 dependencies # Web application dependencies only
# Core web framework # Core web framework
Flask>=3.0.0 Flask>=3.0.0