44 lines
963 B
Python
44 lines
963 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Settings file for OpenSlides' tests
|
|
#
|
|
|
|
|
|
from openslides.global_settings import * # noqa
|
|
|
|
# Use 'DEBUG = True' to get more details for server errors. Default for releases: False
|
|
DEBUG = True
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': '',
|
|
'USER': '',
|
|
'PASSWORD': '',
|
|
'HOST': '',
|
|
'PORT': '',
|
|
}
|
|
}
|
|
|
|
# Set timezone
|
|
TIME_ZONE = 'Europe/Berlin'
|
|
|
|
# Make this unique, and don't share it with anybody.
|
|
SECRET_KEY = 'secred'
|
|
|
|
# Add OpenSlides plugins to this list (see example entry in comment)
|
|
INSTALLED_PLUGINS = (
|
|
'tests.person_api',
|
|
)
|
|
|
|
INSTALLED_APPS += INSTALLED_PLUGINS
|
|
|
|
# Absolute path to the directory that holds media.
|
|
# Example: "/home/media/media.lawrence.com/"
|
|
MEDIA_ROOT = os.path.realpath(os.path.dirname(__file__))
|
|
|
|
# Path to Whoosh search index
|
|
# Use RAM storage
|
|
HAYSTACK_CONNECTIONS['default']['STORAGE'] = 'ram'
|