• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3# The website is built using MkDocs with the Material theme.
4# https://squidfunk.github.io/mkdocs-material/
5# It requires Python to run.
6# Install the packages with the following command:
7# pip install mkdocs mkdocs-material
8
9set -ex
10
11# Generate the API docs
12./gradlew okio:dokkaHtml
13
14# Copy in special files that GitHub wants in the project root.
15cp CHANGELOG.md docs/changelog.md
16cp CONTRIBUTING.md docs/contributing.md
17