[READ-ONLY] Mirror of https://github.com/shuuji3/django-litestream-playground. Playground for django-litestream package django-litestream-playground.shuuji3.xyz/
django litestream
0

Configure Feed

Select the types of activity you want to include in your feed.

268 B 14 lines
1FROM python:3.13-slim-bookworm 2LABEL authors="shuuji3" 3 4WORKDIR /app 5 6ENV PYTHONUNBUFFERED=1 7 8COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ 9COPY . . 10 11RUN uv sync --frozen 12RUN SECRET_KEY=x DEBUG=false uv run manage.py collectstatic --noinput 13 14CMD ["./run.sh"]