Skip to content

cynthianyeint/django-ajax-chat

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Chat

DjangoChat is a simple Django Chat app

demo

http://www.sharan.co/chat/

Quick start

  1. Add "djangoChat" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = (
        ...
        'djangoChat',
    )
  2. Include the polls URLconf in your project urls.py like this:

    url(r'^chat/', include('djangoChat.urls')),
  3. Run python manage.py syncdb to create the djangoChat models.
  4. Start the development server and visit http://127.0.0.1:8000/chat/

===== to do list ===== improve sidebar chat input format options - links images youtube embbed etc escape html allow selected tags in input

admin stuff see logs private messages ???

About

django ajax chat package

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 40.9%
  • JavaScript 26.0%
  • CSS 21.7%
  • HTML 11.4%