graphene/tests/django_settings.py

14 lines
221 B
Python
Raw Normal View History

2015-09-30 09:40:40 +03:00
SECRET_KEY = 1
INSTALLED_APPS = [
'graphql.contrib.django',
'tests.starwars_django',
]
DATABASES={
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'tests/django.sqlite',
}
}