-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmkdocs.yml
70 lines (66 loc) · 1.62 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
site_name: rAPId
theme:
name: 'material'
palette:
scheme: default
primary: pink
accent: pink
logo: 'favicon.ico'
favicon: 'favicon.ico'
repo_name: no10ds/rapid
repo_url: https://github.com/no10ds/rapid
nav:
- Welcome to rAPId: index.md
- Getting Started: getting_started.md
- API:
- api/usage.md
- api/schema.md
- api/data_access.md
- api/query.md
- Routes:
- api/routes/schema.md
- api/routes/dataset.md
- api/routes/protected_domain.md
- api/routes/user.md
- api/routes/client.md
- api/routes/permissions.md
- api/routes/subject.md
- Infrastructure:
- infrastructure/deployment.md
- infrastructure/alerting_monitoring.md
- infrastructure/certificates.md
- infrastructure/domains_subdomains.md
- infrastructure/overview.md
- UI:
- ui/usage.md
- SDK:
- sdk/usage.md
- sdk/useful_patterns.md
- API Documentation:
- sdk/api/rapid.md
- sdk/api/auth.md
- Items:
- sdk/api/items/query.md
- sdk/api/items/schema.md
- Patterns:
- sdk/api/patterns/data.md
- Migration: migration.md
- Contributing: contributing.md
- Changelog:
- changelog/sdk.md
- changelog/api.md
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_source: false
show_basis: true
paths: [sdk]
markdown_extensions:
- pymdownx.highlight
- pymdownx.extra
- pymdownx.magiclink
- pymdownx.tabbed:
alternate_style: true