GraphQL module for the Wagtail CMS. It is based on the Graphene framework.
Documentation is available at https://wagtail-graphql-api.readthedocs.io/.
Set up a virtual environment.
python3 -m venv venv
source venv/bin/activate
In the project root, install the package.
flit install --symlink --python $(which python) --extra all
Go to the docs
folder and generate the documentation
make html
You can serve the documentation from the web server.
python -m http.server -d _build/html/ 9000
The documentation will be accessible at http://localhost:9000.