graphene/graphene-django/django_test_settings.py
2016-06-17 09:29:38 -07:00

15 lines
240 B
Python

SECRET_KEY = 1
INSTALLED_APPS = [
'graphene_django',
'graphene_django.tests',
'examples.starwars',
]
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'django_test.sqlite',
}
}