We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f36dc5d commit d222169Copy full SHA for d222169
README.md
@@ -11,3 +11,15 @@ files from this content.
11
12
A GitHub workflow (`.github/workflows/deploy.yml`) automatically builds and deploys
13
the website when changed.
14
+
15
16
+## How to build and serve locally
17
18
+This installs dependencies, builds the website and opens index.html in a browser:
19
20
+```bash
21
+micromamba create --file environment.yml --yes
22
+micromamba activate "${PWD##*/}" # If dir name == environment name...
23
+poetry install
24
+sphinx-build -b html brodie.id.au _build && open _build/index.html
25
+```
0 commit comments