Home

Awesome

The website for the https://sangria-graphql.github.io

Prerequisites

Local development

Start local server with:

bundle exec jekyll serve --watch

or with docker:

docker-compose up

And then point browser to http://localhost:4000. This will also automatically pickup all changes you make.

Build for GitHub Pages

bundle exec jekyll b -d docs
docker build -t sangria-doc .
docker run --rm --volume=$(pwd):/src sangria-doc exec jekyll b -d docs

The files in /doc is used by Github. You have to push the changes manually for now.