File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1- pytest-django~=4.9.0
2- pytest-asyncio~=0.24.0
31pytest-cov~=5.0.0
4- openwisp-utils[qa,selenium] @ https://github.com/openwisp/openwisp-utils/tarball/1.2
5- channels_redis~=4.2.1
2+ openwisp-utils[qa,selenium,channels-test] @ https://github.com/openwisp/openwisp-utils/tarball/1.2
63django_redis~=5.4.0
74mock-ssh-server~=0.9.1
85responses~=0.25.6
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ django-x509 @ https://github.com/openwisp/django-x509/tarball/1.3
66django-loci @ https://github.com/openwisp/django-loci/tarball/1.2
77django-flat-json-widget ~= 0.3.1
88openwisp-users @ https://github.com/openwisp/openwisp-users/tarball/1.2
9- openwisp-utils [celery ] @ https://github.com/openwisp/openwisp-utils/tarball/1.2
10- openwisp-notifications @ https://github.com/openwisp/openwisp-notifications/tarball/1.2
9+ openwisp-utils [celery,channels ] @ https://github.com/openwisp/openwisp-utils/tarball/1.2
10+ openwisp-notifications @ https://github.com/openwisp/openwisp-notifications/tarball/deps-channels
1111openwisp-ipam @ https://github.com/openwisp/openwisp-ipam/tarball/1.2
1212djangorestframework-gis @ https://github.com/openwisp/django-rest-framework-gis/tarball/1.2
1313paramiko [ed25519 ]~= 3.5.1
Original file line number Diff line number Diff line change 11from channels .auth import AuthMiddlewareStack
22from channels .routing import ProtocolTypeRouter , URLRouter
33from channels .security .websocket import AllowedHostsOriginValidator
4+ from django .core .asgi import get_asgi_application
45
56from openwisp_controller .routing import get_routes
67
78application = ProtocolTypeRouter (
89 {
910 'websocket' : AllowedHostsOriginValidator (
1011 AuthMiddlewareStack (URLRouter (get_routes ()))
11- )
12+ ),
13+ 'http' : get_asgi_application (),
1214 }
1315)
Original file line number Diff line number Diff line change 2222SECRET_KEY = 'fn)t*+$)ugeyip6-#txyy$5wf2ervc0d2n#h)qb)y5@ly$t*@w'
2323
2424INSTALLED_APPS = [
25+ 'daphne' ,
2526 'django.contrib.auth' ,
2627 'django.contrib.contenttypes' ,
2728 'django.contrib.sessions' ,
You can’t perform that action at this time.
0 commit comments