Commit 74c51305 authored by Denis Bilenko's avatar Denis Bilenko

webchat example: use file on disk rather than in-memory database. not sure...

webchat example: use file on disk rather than in-memory database. not sure why, but :memory: now gives me OperationalError: no such table django_session
parent 801093e4
......@@ -6,7 +6,7 @@ TEMPLATE_DEBUG = DEBUG
ADMINS = ()
MANAGERS = ADMINS
DATABASE_ENGINE = 'sqlite3'
DATABASE_NAME = ':memory:'
DATABASE_NAME = '/tmp/gevent-webchat.sqlite'
DATABASE_USER = ''
DATABASE_PASSWORD = ''
DATABASE_HOST = ''
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment