]> git.openstreetmap.org Git - nominatim.git/blob - docs/mkdocs.yml
c4579036e46ccf94996db058ea640c028f2102c9
[nominatim.git] / docs / mkdocs.yml
1 site_name: Nominatim Documentation
2 theme: readthedocs
3 docs_dir: ${CMAKE_CURRENT_BINARY_DIR}
4 site_url: https://nominatim.org
5 repo_url: https://github.com/openstreetmap/Nominatim
6 pages:
7     - 'Introduction' : 'index.md'
8     - 'API Reference':
9         - 'Overview': 'api/Overview.md'
10         - 'Search': 'api/Search.md'
11         - 'Reverse': 'api/Reverse.md'
12         - 'Address Lookup': 'api/Lookup.md'
13         - 'Details' : 'api/Details.md'
14         - 'Status' : 'api/Status.md'
15         - 'Place Output Formats': 'api/Output.md'
16         - 'FAQ': 'api/Faq.md'
17     - 'Administration Guide':
18         - 'Basic Installation': 'admin/Installation.md'
19         - 'Import' : 'admin/Import.md'
20         - 'Update' : 'admin/Update.md'
21         - 'Deploy' : 'admin/Deployment.md'
22         - 'Nominatim UI'  : 'admin/Setup-Nominatim-UI.md'
23         - 'Advanced Installations' : 'admin/Advanced-Installations.md'
24         - 'Migration from older Versions' : 'admin/Migration.md'
25         - 'Troubleshooting' : 'admin/Faq.md'
26     - 'Customization Guide':
27         - 'Overview': 'customize/Overview.md'
28         - 'Configuration Settings': 'customize/Settings.md'
29         - 'Special Phrases': 'customize/Special-Phrases.md'
30         - 'Tokenizers' : 'customize/Tokenizers.md'
31         - 'External data: US housenumbers from TIGER': 'customize/Tiger.md'
32         - 'External data: Postcodes': 'customize/Postcodes.md'
33     - 'Developers Guide':
34         - 'Setup for Development' : 'develop/Development-Environment.md'
35         - 'Architecture Overview' : 'develop/overview.md'
36         - 'OSM Data Import' : 'develop/Import.md'
37         - 'Place Ranking' : 'develop/Ranking.md'
38         - 'Tokenizers' : 'develop/Tokenizers.md'
39         - 'Postcodes' : 'develop/Postcodes.md'
40         - 'Testing' : 'develop/Testing.md'
41         - 'External Data Sources': 'develop/data-sources.md'
42     - 'Appendix':
43         - 'Installation on CentOS 7' : 'appendix/Install-on-Centos-7.md'
44         - 'Installation on CentOS 8' : 'appendix/Install-on-Centos-8.md'
45         - 'Installation on Ubuntu 18' : 'appendix/Install-on-Ubuntu-18.md'
46         - 'Installation on Ubuntu 20' : 'appendix/Install-on-Ubuntu-20.md'
47 markdown_extensions:
48     - codehilite
49     - admonition
50     - toc:
51         permalink: 
52 extra_css: [extra.css, styles.css]
53 plugins:
54     - search
55     - mkdocstrings:
56         handlers:
57           python:
58             rendering:
59               show_source: false
60               show_signature_annotations: false