1.7 KiB
Building the jsPsych documentation
The documentation hosted at https://www.jspsych.org is generated using mkdocs and the mkdocs-material theme. The documentation files are located in the /docs
directory of the GitHub repository. The documentation is written using markdown.
To build a local copy of the docs, you will need to install mkdocs
and mkdocs-material
using poetry
.
Install poetry
Poetry is a package manager for python. Follow the install instructions on the poetry
website to get it running.
Install dev dependencies
Run the command poetry install
in the root directory of jsPsych to install mkdocs
, mkdocs-material
, and their dependencies.
Launch a poetry shell
Poetry installs dependencies in a virtual environment. Run poetry shell
to open a new shell configured to use the virtual environment that poetry generated.
Building a local copy of the docs
Run mike deploy [version] -u
to build a new version of the documentation or to override an existing version. For example, if you are testing an edit to version 7.2
of the documentation, run mike deploy 7.2 -u
.
This will build the documentation and commit it directly to the gh-pages
branch.
We use mike
instead of mkdocs
for the build step to support versioning of the documentation. mike
runs the mkdocs
command under the hood.
Viewing the local docs
Run mike serve
to launch a local webserver. The docs will be viewable at http://localhost:8000
.