feat(themes,templates,signup-gate): add signup gate, remove custom theme switcher from links footer

This commit is contained in:
hh
2026-07-22 22:18:26 +02:00
parent 9d6ff3ae8c
commit 94e452a213
23 changed files with 927 additions and 43 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM ghcr.io/astral-sh/uv:python3.13-alpine
ENV TERM=xterm-256color
ENV COLORTERM=truecolor
WORKDIR /app
ADD pyproject.toml uv.lock ./
RUN uv sync --frozen --no-install-project --no-dev
COPY /src ./src
RUN uv sync --frozen --no-dev
ENV PATH="/app/.venv/bin:$PATH"
ENTRYPOINT ["python", "-m"]