This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
auf-auf-django-secretquestions/auf/django/secretquestions/tests/settings.py

18 lines
476 B
Python
Raw Normal View History

2013-08-09 00:15:37 +02:00
# -*- coding: utf-8 -*-
2013-08-12 21:13:07 +02:00
USE_I18N = False
2013-08-09 00:15:37 +02:00
SECRET_KEY = 'secret'
2013-08-12 21:13:07 +02:00
ROOT_URLCONF = 'auf.django.secretquestions.tests.urls'
2013-08-09 00:15:37 +02:00
2013-08-09 20:10:54 +02:00
DATABASES = {'default':
{'ENGINE': 'django.db.backends.sqlite3', 'NAME': ':memory:', }}
INSTALLED_APPS = ('django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.admin',
2013-08-13 05:58:22 +02:00
'south',
2013-08-12 21:13:07 +02:00
'auf.django.secretquestions',)