Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 737 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 737 Bytes

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.