react-apollo-graphql-demo icon indicating copy to clipboard operation
react-apollo-graphql-demo copied to clipboard

Code for a talk that I gave at the TalkJS Singapore June meetup

trafficstars

React + Apollo + GraphQL Demo

This repository contains code that was shown at the TalkJS Singapore June Meetup.

The slides can be found here.

This repo contains a simple Django project with one app called simple_app and one model (called Message). After you cloned this repo, please create a virtualenv in Python and install Django:

cd ~/Projects/
git clone https://github.com/mbrochh/react-apollo-graphql-demo.git
cd react-apollo-graphql-demo/backend
mkvirtualenv react-apollo-graphql-demo
pip install -r requirements.txt
./manage.py runserver 0.0.0.0:8000

Once you have the local devserver running, you should be able to login at /admin/ with user admin and password start1234 and you should be able to access /graphql/.