A simple Hello World project for learning about GraphQL.
Based on the Very Academy "GraphQL" tourorial.
Python must be installed to complete setup.
Using a virutal environment is recommended.
python -m venv venv
venv\Scripts\activate
The required packages are in the requirements.txt file.
pip install -r requirements.txt
Navigate to the directory with manage.py.
Activate the virtual environment (if applicable).
Migrate and run the sever.
python manage.py migrate
python manage.py runserver
From a web browser, open localhost:8000/books, localhost:8000/quiz, or localhost:8000/users.