Skip to content

howtographql/graphql-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

graphql-python

A Hacketnews project developed for the How to GraphQL tutorial using Python, Django and Graphene. Tested on Python 3.6.

Installation and Usage

Clone the project.

Create a virtual environment:

python3.6 -m venv venv
source venv/bin/activate

Install everything needed:

pip install -r requirements.txt

Create the database and run the server:

python hackernews/manage.py migrate
python hackernews/manage.py runserver

You should be able to access the server on here.

To get the most of the project, please read the tutorial.