Project-Stage-Academy / UA1244_beta

1 stars 0 forks source link

Setup Django Channels [40-1] #45

Closed mehalyna closed 1 week ago

mehalyna commented 3 weeks ago

Description: Set up Django Channels in the project to handle WebSocket connections which are essential for real-time messaging functionality.

Technical Steps:

  1. Install Django Channels and its dependencies.
  2. Add channels to the INSTALLED_APPS in your Django settings.
  3. Configure ASGI application to replace the default WSGI.
  4. Define a routing configuration to handle WebSocket paths.

    https://channels.readthedocs.io/en/latest/installation.html

    Task #40