mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
23 lines
No EOL
570 B
Python
23 lines
No EOL
570 B
Python
from settings import *
|
|
DATABASES = {
|
|
'default': {
|
|
'NAME': ':memory:',
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'USER': 'newsblur',
|
|
'PASSWORD': '',
|
|
'HOST': '127.0.0.1',
|
|
}
|
|
}
|
|
DATABASE_ENGINE = 'sqlite3'
|
|
DATABASE_USER = 'newsblur'
|
|
DATABASE_PASSWORD = ''
|
|
DATABASE_NAME = 'newsblur'
|
|
DATABASE_HOST = '127.0.0.1'
|
|
DATABASE_PORT = ''
|
|
|
|
TEST_DATABASE_NAME = ":memory:"
|
|
|
|
# from django.db import connection
|
|
# cursor = connection.cursor()
|
|
# cursor.execute('PRAGMA temp_store = MEMORY;')
|
|
# cursor.execute('PRAGMA synchronous=OFF') |