forked from DGNum/gestioCOF
Channels 3
This commit is contained in:
parent
91e9beee11
commit
5e2e68960b
4 changed files with 5 additions and 5 deletions
|
@ -5,6 +5,6 @@ from .consumers import OpenKfetConsumer
|
||||||
|
|
||||||
OpenRouter = URLRouter(
|
OpenRouter = URLRouter(
|
||||||
[
|
[
|
||||||
path(r"", OpenKfetConsumer),
|
path("", OpenKfetConsumer.as_asgi()),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
|
@ -7,7 +7,7 @@ from .consumers import KPsul
|
||||||
|
|
||||||
KFRouter = URLRouter(
|
KFRouter = URLRouter(
|
||||||
[
|
[
|
||||||
path("k-psul/", KPsul),
|
path("k-psul/", KPsul.as_asgi()),
|
||||||
path("open", OpenRouter),
|
path("open", OpenRouter),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
|
@ -6,10 +6,10 @@ psycopg2<2.8
|
||||||
# Redis
|
# Redis
|
||||||
django-redis-cache==3.0.*
|
django-redis-cache==3.0.*
|
||||||
redis~=2.10.6
|
redis~=2.10.6
|
||||||
channels-redis==2.4.*
|
channels-redis==3.4.*
|
||||||
|
|
||||||
# ASGI protocol and HTTP server
|
# ASGI protocol and HTTP server
|
||||||
daphne==2.5.*
|
daphne==3.0.*
|
||||||
|
|
||||||
# ldap bindings
|
# ldap bindings
|
||||||
python-ldap
|
python-ldap
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Django==3.2.*
|
Django==3.2.*
|
||||||
Pillow==7.2.0
|
Pillow==7.2.0
|
||||||
authens==0.1b4
|
authens==0.1b4
|
||||||
channels==2.4.*
|
channels==3.0.*
|
||||||
configparser==3.5.0
|
configparser==3.5.0
|
||||||
django-autocomplete-light==3.9.*
|
django-autocomplete-light==3.9.*
|
||||||
django-bootstrap-form==3.3
|
django-bootstrap-form==3.3
|
||||||
|
|
Loading…
Reference in a new issue