Skip to content

Commit 5861604

Browse files
committed
feat(docs): refine setup
- removes double `use flake` in root `.envrc` - adds a `.envrc` for docs - moves all docs related config inside the `docs` directory - updates contribution guide explaining how to contribute docs - updates docs github workflow to work with these changes Signed-off-by: Brian McGee <[email protected]>
1 parent ebb39c5 commit 5861604

File tree

6 files changed

+25
-23
lines changed

6 files changed

+25
-23
lines changed

.envrc

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ dotenv_if_exists .env.local
33

44
watch_file nix/devshell.nix
55

6-
use flake
7-
use flake .#docs
6+
use flake

.github/workflows/gh-pages.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ jobs:
3333
- name: Deploy main
3434
if: ${{ github.ref_name == 'main' }}
3535
run: |
36-
nix develop .#docs --command bash -c "mike deploy -p main"
36+
nix develop .#docs --command bash -c "cd docs && mike deploy -p main"
3737
- name: Deploy version
3838
if: startsWith(github.ref, 'refs/tags/v')
3939
run: |
4040
REF_NAME=${{ github.ref_name }}
4141
MAJOR_MINOR=${REF_NAME%.*}
4242
# strip the leading v from the ref_name
4343
# update the latest alias
44-
nix develop .#docs --command bash -c "mike deploy -p -u ${MAJOR_MINOR} latest"
44+
nix develop .#docs --command bash -c "cd docs && mike deploy -p -u ${MAJOR_MINOR} latest"

docs/.envrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source_up
2+
3+
use flake .#docs

docs/content/contributing/docs.md

+11-8
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
11
# Documentation
22

3-
There is a separate [devshell] called `docs` which is provided for working with the docs locally.
3+
There is a `docs` package which can be built as follows:
44

5-
It can be entered by running: `nix develop .#docs`
5+
```console
6+
nix build .#docs
7+
```
8+
9+
This produces a static build of the docs and places it in a symlink called `result` in the same directory.
10+
11+
We can re-use this package as a [devshell], relying upon it to provide the necessary dependencies for developing the
12+
docs.
613

714
```nix title="nix/devshells/docs.nix"
8-
--8<-- "nix/devshells/docs.nix"
15+
--8<-- "nix/packages/docs.nix"
916
```
1017

1118
The docs are based on [MkDocs] and the [MkDocs Material] theme.
12-
You will find its configuration and content in the following locations:
13-
14-
- `mkdocs.yaml`
15-
- `./docs`
1619

1720
## Serve locally
1821

19-
To serve the docs locally run `mkdocs serve` from the root of the repository:
22+
To serve the docs locally run `mkdocs serve` from the `docs` directory:
2023

2124
```console
2225
mkdocs serve

mkdocs.yml docs/mkdocs.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ validation:
2020

2121
# Configuration
2222

23-
docs_dir: docs/content
23+
docs_dir: content
2424

2525
theme:
2626
name: material
27-
custom_dir: docs/theme
27+
custom_dir: theme
2828

2929
logo: assets/images/logo.png
3030
favicon: assets/images/logo.png
@@ -102,7 +102,8 @@ markdown_extensions:
102102
linenums: true
103103
anchor_linenums: true
104104
- pymdownx.inlinehilite
105-
- pymdownx.snippets
105+
- pymdownx.snippets:
106+
base_path: ../.
106107
- pymdownx.keys
107108

108109
plugins:

nix/packages/docs.nix

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
1-
{
2-
pkgs,
3-
perSystem,
4-
...
5-
}:
1+
{pkgs, perSystem, ...}:
62
pkgs.stdenvNoCC.mkDerivation {
73
name = "docs";
84

95
unpackPhase = ''
10-
cp ${../../mkdocs.yml} mkdocs.yaml
11-
cp -r ${../../docs} docs
6+
cp -r ${../../docs}/* .
7+
ls -alr
128
'';
139

14-
nativeBuildInputs = with pkgs;
10+
nativeBuildInputs =
1511
(with pkgs.python3Packages; [
1612
mike
1713
mkdocs

0 commit comments

Comments
 (0)