django-admin-chat

Django admin chat


License
MIT
Install
pip install django-admin-chat==0.6

Documentation

Django Admin Chat

Add chat to django

Quick start

  1. Add "chat" to INSTALLED_APPS:
  INSTALLED_APPS = {
    ...
    'chat'
  }
  1. Include the chat URLconf in urls.py:
  path('', include('chat.urls'))
  1. Run
  python manage.py makemigrations
  python manage.py migrate
  1. Run the development server and access http://127.0.0.1:8000/admin/chat/ to manage chats.