graphene/tests/django_settings.py
2015-11-11 21:46:26 -08:00

13 lines
196 B
Python

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