mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
24 lines
No EOL
542 B
Python
24 lines
No EOL
542 B
Python
from settings import *
|
|
DATABASES = {
|
|
'default': {
|
|
'NAME': ':memory:',
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'USER': 'newsblur',
|
|
'PASSWORD': '',
|
|
'HOST': '127.0.0.1',
|
|
}
|
|
}
|
|
MONGO_DB = {
|
|
'NAME': 'newsblur_test',
|
|
'HOST': '127.0.0.1',
|
|
'PORT': 27017
|
|
}
|
|
|
|
TEST_DATABASE_NAME = ":memory:"
|
|
DAYS_OF_UNREAD = 9999
|
|
TEST_DEBUG = True
|
|
|
|
# from django.db import connection
|
|
# cursor = connection.cursor()
|
|
# cursor.execute('PRAGMA temp_store = MEMORY;')
|
|
# cursor.execute('PRAGMA synchronous=OFF') |