graphene/examples/cookbook_django
2016-05-11 23:54:15 -07:00
..
cookbook Fixed PEP8 + Python 3 print 2016-05-11 23:54:15 -07:00
manage.py Renamed cookbook to cookbook Django 2016-01-02 21:23:40 +01:00
README.md Renamed cookbook to cookbook Django 2016-01-02 21:23:40 +01:00
requirements.txt Renamed cookbook to cookbook Django 2016-01-02 21:23:40 +01:00

Cookbook Example Django Project

This example project demos integration between Graphene and Django. The project contains two apps, one named ingredients and another named recepies.

Getting started

First you'll need to get the source of the project. Do this by cloning the whole Graphene repository:

# Get the example project code
git clone https://github.com/graphql-python/graphene.git
cd graphene/examples/cookbook

It is good idea (but not required) to create a virtual environment for this project. We'll do this using virtualenv to keep things simple, but you may also find something like virtualenvwrapper to be useful:

# Create a virtualenv in which we can install the dependencies
virtualenv env
source env/bin/activate

Now we can install our dependencies:

pip install -r requirements.txt

Now setup our database:

# Setup the database
./manage.py migrate

# Load some example data
./manage.py loaddata ingredients

# Create an admin user (useful for logging into the admin UI
# at http://127.0.0.1:8000/admin)
./manage.py createsuperuser

Now you should be ready to start the server:

./manage.py runserver

Now head on over to http://127.0.0.1:8000/graphiql and run some queries! (See the Django quickstart guide for some example queries)