You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 17, 2023. It is now read-only.
I'm discovering Django and Channels, so first of all, thank you very much for this great tutorial !
As the 2020webinar branch contains the edited code during the video tutorial, the run command appears to not be set properly for local execution in Docker Compose. In the video the run configuration appears to be done in PyCharm but when we use docker compose directly, the "runserver_plus" should be disabled in docker-compose.yml.
Hello,
I'm discovering Django and Channels, so first of all, thank you very much for this great tutorial !
As the
2020webinarbranch contains the edited code during the video tutorial, the run command appears to not be set properly for local execution in Docker Compose. In the video the run configuration appears to be done in PyCharm but when we use docker compose directly, the "runserver_plus" should be disabled indocker-compose.yml.So this line :
command: python manage.py runserver_plus 0.0.0.0:8000should be replaced by :
command: python manage.py runserver 0.0.0.0:8000Then everything starts properly and the async buttons work perfectly !