settings: define sqlite memory backend as default (#18177)

It's not used anyway, this avoids an unnecessary file and make it
possible to run multiple instances (useful for debugging live servers,
with one instance tied to uwsgi and a debugging instance started with
"runserver").
This commit is contained in:
Frédéric Péters 2017-08-26 12:29:19 +02:00
parent 70a71af762
commit 99bdbefc7c
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ MANAGERS = ADMINS
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(PROJECT_PATH, 'wcs.sqlite3'),
'NAME': ':memory:',
}
}