Skip to content

Latest commit

 

History

History

README.md

GraphQL Kotlin Docs

This website is built with Docusaurus.

Running Locally

Install dependencies and start the dev server:

bun install
bun run start

Cutting a New Major Version

When starting development on a new major version (e.g. going from v9 to v10):

  1. Snapshot the current docs using the version script. This copies docs/ into versioned_docs/ and creates a versioned sidebar:

    cd website
    bun run version 9.x.x
  2. Update docusaurus.config.js:

    • Set lastVersion to the version you just created (e.g. '9.x.x')
    • Update the current version path to the new major (e.g. path: '10.x.x')
  3. Bump the project version in /gradle.properties (e.g. 10.0.0-SNAPSHOT)