mirror of
https://github.com/viq/NewsBlur.git
synced 2025-04-13 09:38:09 +00:00
10 lines
No EOL
268 B
Python
10 lines
No EOL
268 B
Python
from settings import *
|
|
|
|
DATABASE_ENGINE = 'sqlite3'
|
|
DATABASE_NAME = ':memory:'
|
|
TEST_DATABASE_NAME = ":memory:"
|
|
|
|
# from django.db import connection
|
|
# cursor = connection.cursor()
|
|
# cursor.execute('PRAGMA temp_store = MEMORY;')
|
|
# cursor.execute('PRAGMA synchronous=OFF') |