Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements_base.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Django==1.11.13
graphene-django>=2.1rc1
graphene-django==2.1rc1
django-filter==1.1.0
django-environ==0.4.4
# debug_toolbar
2 changes: 1 addition & 1 deletion swapi_graphene/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = []
ALLOWED_HOSTS = ['*']


# Application definition
Expand Down
6 changes: 3 additions & 3 deletions swapi_graphene/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ def static(prefix, view=serve, **kwargs):
]

backend = GraphQLDeciderBackend([
# GraphQLCachedBackend(GraphQLQuiverCloudBackend(
# 'https://******@api.graphql-quiver.com'
# )),
GraphQLCachedBackend(GraphQLQuiverCloudBackend(
'https://******@api.graphql-quiver.com'
)),
GraphQLCoreBackend()
])

Expand Down