-
Edited:
The most common reasons upgrades don't work has to do with how we match an installed application against a manifest in a configured source. We are depending on data available in Windows A…
-
from django.urls import path
from . import views
from blog.models import Post, Category
from django_distill import distill_path
from django.template.defaultfilters import slugify
def get_index(…
-
Hi, I tried to use Django-distill to generate a site that I would like to host on Github Pages.
The problem is that Github pages for projects uses URLs that use the format `https://.github.io/` inste…
-
Is there an official stance on the "src/" directory thing? I'm all for it (and @hynek seems to agree) but I haven't found any discussion or explanation about it from the PyPA. The guide doesn't mentio…
-
Hi ,
I find the library easy to use and simple to understand. I have certain requirements and would be great if i can solve it with the django-distill library.
Some information on the usecases.
…
-
Hello.
I'm trying to create a Django blog site using a headless CMS.
Today I found django-distill and succeeded in generating static html files.
```bash
python ./manage.py distill-local
```
…
-
I'm running the latest version of the client. When `initialize_tracer()` is called, it gets stuck / hangs at `Initializing Jaeger Tracer with UDP reporter`.
I'm running the agent in another Docker…
-
It is a little difficult to see what changes were made between `django-distill` versions at the moment, it would be very useful if these would be documented in a changelog. I would recommend using the…
-
I find that I very often create a function that does nothing:
```python
def return_none() -> None:
return None
```
just so I can provide it to `distill_func`:
```python
urlpatterns = …
-
I am really liking django-distill for a hobby project of mine.
Spent quite a while wondering why, after I had run `collectstatic` and then run `distill-local`, the static files for every application …