-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
40 lines (38 loc) · 1.2 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
site_name: Workshop
repo_url: https://git.torchbox.com/workshop/workshop
site_url:
edit_uri: 'edit/master/docs/'
repo_name: Gitlab
dev_addr: 0.0.0.0:8001
theme:
name: material
font: false
markdown_extensions:
- codehilite
- admonition
- sane_lists
- toc:
permalink: true
# pymdown-extensions meant to bring the Markdown implementation closer to GFM.
- pymdownx.details
- pymdownx.magiclink
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
nav:
- 'Home': 'index.md'
- 'Infrastructure': 'infrastructure.md'
- 'Project conventions': 'project_conventions.md'
- 'Deployment': 'deployment.md'
- 'Front-end':
- 'Tooling': 'front-end/tooling.md'
- 'Form overrides': 'front-end/form-overrides.md'
- 'Placeholder images': 'front-end/placeholder_images.md'
- 'Continuous integration': 'continuous-integration.md'
- 'Anonymised data': 'anonymised_data.md'
- 'Custom features':
- 'Migration-friendly StreamFields': 'custom-features/migration_friendly_streamfields.md'
- 'Data protection': 'data_protection.md'
- 'VSCode Dev container': 'vscode-dev-container.md'
- 'Support runbook': 'support-runbook.md'
- 'Upgrading guidelines': 'upgrading.md'