thenewguy
thenewguy
@andrewgodwin Makes sense! @evansd Is it correct that Whitenoise is compatible with Django served by ASGI if using middleware integration? Just barebones ASGI integration is unsupported?
I am also hitting a similar issue as described by the OP using EFS with lots of static files
@jbiggar Did you use this solution in production? Are you happy with it? @evansd Is the proposed implementation acceptable for inclusion with whitenoise?
I looked at this again and had an idea that I think solves all the points with very little code written against the Django middleware: ``` class WhiteNoiseMiddleware(WhiteNoise): add_static_root_files =...
Just wanted to leave an update that I've been running with the working concept in PR https://github.com/evansd/whitenoise/pull/275 for a little bit now and it seems to work well
@gasman Is there a minimal code snippet available anywhere that demonstrates how to use tags (utilizing the default taggit TaggedItem) on a model included by an InlinePanel? I've searched but...
So I updated to work with your latest commits. The keyring requirement is not available for python 3.5 so I had to drop it. But here is a demonstration that...
I just happened to see this: ``` result = group(signatures).apply_async() for child in result.children: ModelTaskMeta.objects.create( task_id=child.id, content_object=self, ) ``` Easy way to relate groups if you have a reference to...
This is the result: ``` # convert -list configure | grep -i 'delegates' DELEGATES bzlib djvu fftw fontconfig freetype jbig jpeg jng jp2 lcms2 lqr lzma openexr pango png rsvg...
I think I figured it out. Looks like the issue is write buffering. The error message sent me in the wrong direction. I am not sure how to write a...