graphene/tests/django_settings.py

14 lines
233 B
Python
Raw Normal View History

2015-09-30 09:40:40 +03:00
SECRET_KEY = 1
INSTALLED_APPS = [
2015-12-04 08:49:10 +03:00
'graphene.contrib.django.tests',
'examples.starwars_django',
2015-09-30 09:40:40 +03:00
]
2015-10-03 08:17:51 +03:00
DATABASES = {
2015-09-30 09:40:40 +03:00
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'tests/django.sqlite',
}
}