Kai Schlamp
Kai Schlamp
Also if you don't need HTML5 DND support then [dnd-kit](https://github.com/clauderic/dnd-kit) is a very good other solution with Next.js support I am quite happy with (very actively developed).
I investigated a bit further, and I guess the [`autoescape_paste`](https://github.com/vscode-django/vscode-django/blob/69d480440c84aa9c017debc3b2514496864403f6/snippets/templates/tags.json#L33) snippet is the problematic one, as it tries to access the clipboard. I tried to disable it with `"django.snippets.exclude": ["autoescape_paste"]`,...
I am also quite interested in that. Currently, we use pynetdicom in a separate thread in an asyncio application and are pretty happy with it. Performance is good enough, and...
I tried some stuff, but couldn't get it to work. Maybe someone can take a look: https://github.com/django/daphne/discussions/451
Got it finally working with Channels / Daphne 4.0.0: ```python from functools import partial from channels.routing import get_default_application from daphne.testing import DaphneProcess from django.contrib.staticfiles.handlers import ASGIStaticFilesHandler from django.core.exceptions import ImproperlyConfigured...
> what's request? `def channels_liver_server(request):` A built in fixture of pytest, see https://docs.pytest.org/en/7.1.x/reference/reference.html#request
@flaiming Nope, I don't think so, and not sure if the pytest-django team is interested (maybe because of the additional channels dependency). That said, I have been using it as...
Still an issue in Beta 20.
I can confirm this, too. I would like to use Storybook in a Cloud IDE (Gitpod or Github Codespaces), but WSS needs to be configurable for that.
I think we should not only make it configurable, but also give it a better default (not just a fixed localhost). For example, in Next.js it is also not configurable,...