File tree 6 files changed +25
-23
lines changed
6 files changed +25
-23
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,4 @@ dotenv_if_exists .env.local
3
3
4
4
watch_file nix/devshell.nix
5
5
6
- use flake
7
- use flake .# docs
6
+ use flake
Original file line number Diff line number Diff line change @@ -33,12 +33,12 @@ jobs:
33
33
- name : Deploy main
34
34
if : ${{ github.ref_name == 'main' }}
35
35
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"
37
37
- name : Deploy version
38
38
if : startsWith(github.ref, 'refs/tags/v')
39
39
run : |
40
40
REF_NAME=${{ github.ref_name }}
41
41
MAJOR_MINOR=${REF_NAME%.*}
42
42
# strip the leading v from the ref_name
43
43
# 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"
Original file line number Diff line number Diff line change
1
+ source_up
2
+
3
+ use flake .# docs
Original file line number Diff line number Diff line change 1
1
# Documentation
2
2
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:
4
4
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.
6
13
7
14
``` nix title="nix/devshells/docs.nix"
8
- --8<-- "nix/devshells /docs.nix"
15
+ --8<-- "nix/packages /docs.nix"
9
16
```
10
17
11
18
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 `
16
19
17
20
## Serve locally
18
21
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 :
20
23
21
24
``` console
22
25
❯ mkdocs serve
Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ validation:
20
20
21
21
# Configuration
22
22
23
- docs_dir : docs/ content
23
+ docs_dir : content
24
24
25
25
theme :
26
26
name : material
27
- custom_dir : docs/ theme
27
+ custom_dir : theme
28
28
29
29
logo : assets/images/logo.png
30
30
favicon : assets/images/logo.png
@@ -102,7 +102,8 @@ markdown_extensions:
102
102
linenums : true
103
103
anchor_linenums : true
104
104
- pymdownx.inlinehilite
105
- - pymdownx.snippets
105
+ - pymdownx.snippets :
106
+ base_path : ../.
106
107
- pymdownx.keys
107
108
108
109
plugins :
Original file line number Diff line number Diff line change 1
- {
2
- pkgs ,
3
- perSystem ,
4
- ...
5
- } :
1
+ { pkgs , perSystem , ...} :
6
2
pkgs . stdenvNoCC . mkDerivation {
7
3
name = "docs" ;
8
4
9
5
unpackPhase = ''
10
- cp ${ ../../mkdocs.yml } mkdocs.yaml
11
- cp -r ${ ../../docs } docs
6
+ cp -r ${ ../../docs } /* .
7
+ ls -alr
12
8
'' ;
13
9
14
- nativeBuildInputs = with pkgs ;
10
+ nativeBuildInputs =
15
11
( with pkgs . python3Packages ; [
16
12
mike
17
13
mkdocs
You can’t perform that action at this time.
0 commit comments