A Hacketnews project developed for the How to GraphQL tutorial using Python, Django and Graphene. Tested on Python 3.6.
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.