solocompt / plugs-graphql

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Plugs GraphQL

https://travis-ci.org/ricardolobo/plugs-graphql.svg?branch=master

Your project description goes here

Documentation

The full documentation is at https://plugs-graphql.readthedocs.io.

Quickstart

Install Plugs GraphQL:

pip install plugs-graphql

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'plugs_graphql.apps.PlugsGraphqlConfig',
    ...
)

Add Plugs GraphQL's URL patterns:

from plugs_graphql import urls as plugs_graphql_urls


urlpatterns = [
    ...
    url(r'^', include(plugs_graphql_urls)),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package:

About

License:MIT License


Languages

Language:Python 77.4%Language:Makefile 15.8%Language:HTML 6.8%