mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 12:16:58 +03:00
14 lines
224 B
Python
14 lines
224 B
Python
SECRET_KEY = 1
|
|
|
|
INSTALLED_APPS = [
|
|
'examples.starwars_django',
|
|
'tests.contrib_django',
|
|
]
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': 'tests/django.sqlite',
|
|
}
|
|
}
|