FZambia / django-realtime-playground

Django chat application using different realtime technologies. Out of date! See https://github.com/centrifugal/centrifugo and https://github.com/django/channels
76 stars 10 forks source link

realtime_message #2

Open newtonsheesha opened 8 years ago

newtonsheesha commented 8 years ago

I keep getting a No Such table : realtime_message error

screenshot from 2016-04-25 16 27 24 please help. Am new on django

FZambia commented 8 years ago

Hello, looks like you have not run migrations:

python manage.py migrate
newtonsheesha commented 8 years ago

redone it but still same error screenshot from 2016-04-25 17 02 00

FZambia commented 8 years ago

Which Django version btw? UPD - ah I see in traceback, ignore this question

newtonsheesha commented 8 years ago

latest release 1.9.5

FZambia commented 8 years ago

I updated requirements.txt to use Django 1.7.11 - please pull changes, update your virtualenv and try again. More work required to make this demo be compatible with latest Django - but I don't think its necessary to see concepts shown here.

FZambia commented 8 years ago

Btw if you are interested in making chat in Django - I suggest looking at Centrifugo server or django-channels project (not very stable at moment but can be merged into Django core very soon). Because demos here are just a showcase I published when studied possible solutions of problem (it was a long time ago and some things here are not very actual).