This repository has been archived by the owner on Oct 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
87 lines (79 loc) · 2.09 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
site_name: Underpass
site_description: A customizable data engine that processes mapping data
site_url: "https://underpass.hotosm.org"
repo_name: "hotosm/underpass"
repo_url: "https://github.com/hotosm/underpass/"
edit_uri: "edit/main/docs/"
extra:
social:
- icon: "fontawesome/brands/github"
link: "https://github.com/hotosm/"
- icon: "fontawesome/brands/twitter"
link: "https://twitter.com/hotosm"
- icon: "fontawesome/solid/globe"
link: "https://www.hotosm.org"
theme:
name: material
palette:
primary: custom
extra_css:
- css/extra.css
markdown_extensions:
- tables
- toc:
permalink: true
title: Page contents
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight
- pymdownx.extra
- pymdownx.emoji:
- pymdownx.tabbed:
alternate_style: true
plugins:
- search
- exclude:
glob:
- plugins/*
- __pycache__/*
- mkdocstrings:
handlers:
python:
paths: [.]
options:
members_order: source
separate_signature: true
filters: ["!^_"]
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
nav:
- Home: index.md
- Get Started:
- Install: get-started/Install.md
- Setup: get-started/Setup.md
- Next steps: get-started/NextSteps.md
- Replication:
- Run: Replication/Run.md
- Advanced: Replication/Advanced.md
- API:
- Python (DB): API/PythonDB.md
- Python: API/Python.md
- REST: API/REST.md
- UI:
- Install: UI/Install.md
- UnderpassMap: UI/UnderpassMap.md
- UnderpassFeatureList: UI/UnderpassFeatureList.md
- Developers:
- Coding: Dev/coding.md
- Debugging: Dev/debugging.md
- ChangeFile: Dev/changefile.md
- Data flow: Dev/dataflow.md
- Engine: Dev/engine.md
- OSM Stats: Dev/osmstats.md
- Statistics: Dev/statistics.md
- Validation: Dev/validation.md
- Replication: Dev/replication.md
- Utility: Dev/utility.md
- Chroots: Dev/chroots.md