mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-10 19:57:15 +03:00
19 lines
347 B
Python
19 lines
347 B
Python
import sys, os
|
|
ROOT_PATH = os.path.dirname(os.path.abspath(__file__))
|
|
sys.path.insert(0, ROOT_PATH + '/examples/')
|
|
|
|
SECRET_KEY = 1
|
|
|
|
INSTALLED_APPS = [
|
|
'graphene_django',
|
|
'graphene_django.tests',
|
|
'starwars',
|
|
]
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': 'django_test.sqlite',
|
|
}
|
|
}
|