graphene/tests/django_settings.py
2015-09-29 23:40:40 -07:00

14 lines
221 B
Python

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