-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
44 lines (43 loc) · 1.71 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
41
42
43
44
site_name: ETNA
repo_url: https://github.com/nationalarchives/ds-wagtail
dev_addr: 0.0.0.0:8001
theme:
name: material
font: false
markdown_extensions:
- admonition
- sane_lists
- toc:
permalink: true
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.details
- pymdownx.magiclink
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
nav:
- 'Home': 'index.md'
- 'Developer guide':
- 'Project conventions': 'developer-guide/project-conventions.md'
- 'Contributing code': 'developer-guide/contributing.md'
- 'Dependency management': 'developer-guide/dependency-management.md'
- 'Local development gotchas': 'developer-guide/local-development-gotchas.md'
- 'Backend development': 'developer-guide/backend.md'
- 'Frontend development': 'developer-guide/frontend.md'
- 'Fetching data': 'developer-guide/fetching-data.md'
- 'Working with VS Code': 'developer-guide/vscode.md'
- 'Working with Docker': 'developer-guide/docker.md'
- 'Releases': 'developer-guide/releasing.md'
- 'Infrastructure and environments':
- 'Hosted environments': 'infra/environments.md'
- 'Infrastructure overview': 'infra/infrastructure.md'
- 'Scheduled tasks': 'infra/scheduled-tasks.md'
- 'Configuring an environment': 'infra/configuring-an-environment.md'
- 'Testing an environment': 'infra/testing-an-environment.md'
- 'Caching strategy': 'infra/caching-strategy.md'
- 'Unique features':
- 'Search and record data': 'features/search-and-record-data.md'
- 'Categories': 'features/categories.md'
- 'Feedback mechanism': 'features/feedback-mechanism.md'
- 'Analytics/tracking': 'features/analytics-tracking.md'