diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 44a317b6e7dfecd42f299fdb4760d7a3a1b53fdf..881d1c7128120f9eabc11eab705406ef04ea8f97 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -62,3 +62,17 @@ To install packages for every package or application run
 ```
 pnpm add -w [NPM Package]
 ```
+
+### Docs
+
+To contribute to the docs, go to the docs website folder and run the Docusaurus instance.
+
+```bash
+cd apps/docs
+pnpm install
+pnpm start
+```
+
+That should start a webserver which will serve the docs on https://localhost:3000
+
+Any changes you make should be reflected in the browser. If you need to regenerate the API docs and find that your TSDoc isn't getting the updates, feel free to remove apps/docs/api. It will automatically regenerate itself when you run pnpm start again.