mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-10 00:20:40 +03:00
15 lines
240 B
Python
15 lines
240 B
Python
|
SECRET_KEY = 1
|
||
|
|
||
|
INSTALLED_APPS = [
|
||
|
'graphene_django',
|
||
|
'graphene_django.tests',
|
||
|
'examples.starwars',
|
||
|
]
|
||
|
|
||
|
DATABASES = {
|
||
|
'default': {
|
||
|
'ENGINE': 'django.db.backends.sqlite3',
|
||
|
'NAME': 'django_test.sqlite',
|
||
|
}
|
||
|
}
|