You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
635 B
30 lines
635 B
import sys |
|
import 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.rest_framework", |
|
"graphene_django.tests", |
|
"examples.starwars", |
|
] |
|
|
|
DATABASES = { |
|
"default": {"ENGINE": "django.db.backends.sqlite3", "NAME": "django_test.sqlite"} |
|
} |
|
|
|
TEMPLATES = [ |
|
{ |
|
"BACKEND": "django.template.backends.django.DjangoTemplates", |
|
"DIRS": [], |
|
"APP_DIRS": True, |
|
} |
|
] |
|
|
|
GRAPHENE = {"SCHEMA": "graphene_django.tests.schema_view.schema"} |
|
|
|
ROOT_URLCONF = "graphene_django.tests.urls"
|
|
|