graphene/tests/django_settings.py

14 lines
224 B
Python
Raw Normal View History

2015-09-30 09:40:40 +03:00
SECRET_KEY = 1
INSTALLED_APPS = [
'examples.starwars_django',
2015-09-30 10:11:40 +03:00
'tests.contrib_django',
2015-09-30 09:40:40 +03:00
]
2015-10-03 08:17:51 +03:00
DATABASES = {
2015-09-30 09:40:40 +03:00
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'tests/django.sqlite',
}
}