graphene/tests/django_settings.py
2015-12-03 21:49:10 -08:00

14 lines
233 B
Python

SECRET_KEY = 1
INSTALLED_APPS = [
'graphene.contrib.django.tests',
'examples.starwars_django',
]
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'tests/django.sqlite',
}
}