2
0

mkdocs.yml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. site_name: NetBox Documentation
  2. site_dir: netbox/project-static/docs
  3. site_url: https://docs.netbox.dev/
  4. repo_name: netbox-community/netbox
  5. repo_url: https://github.com/netbox-community/netbox
  6. theme:
  7. name: material
  8. custom_dir: docs/_theme/
  9. icon:
  10. repo: fontawesome/brands/github
  11. palette:
  12. - media: "(prefers-color-scheme: light)"
  13. scheme: default
  14. toggle:
  15. icon: material/lightbulb-outline
  16. name: Switch to Dark Mode
  17. - media: "(prefers-color-scheme: dark)"
  18. scheme: slate
  19. toggle:
  20. icon: material/lightbulb
  21. name: Switch to Light Mode
  22. plugins:
  23. - search
  24. - mkdocstrings:
  25. handlers:
  26. python:
  27. setup_commands:
  28. - import os
  29. - import django
  30. - os.chdir('netbox/')
  31. - os.environ.setdefault("DJANGO_SETTINGS_MODULE", "netbox.settings")
  32. - django.setup()
  33. rendering:
  34. heading_level: 3
  35. members_order: source
  36. show_root_heading: true
  37. show_root_full_path: false
  38. show_root_toc_entry: false
  39. show_source: false
  40. extra:
  41. readthedocs: !ENV READTHEDOCS
  42. social:
  43. - icon: fontawesome/brands/github
  44. link: https://github.com/netbox-community/netbox
  45. - icon: fontawesome/brands/slack
  46. link: https://netdev.chat/
  47. extra_css:
  48. - extra.css
  49. markdown_extensions:
  50. - admonition
  51. - attr_list
  52. - markdown_include.include:
  53. base_path: 'docs/'
  54. headingOffset: 1
  55. - pymdownx.emoji:
  56. emoji_index: !!python/name:materialx.emoji.twemoji
  57. emoji_generator: !!python/name:materialx.emoji.to_svg
  58. - pymdownx.superfences
  59. - pymdownx.tabbed:
  60. alternate_style: true
  61. nav:
  62. - Introduction: 'index.md'
  63. - Installation:
  64. - Installing NetBox: 'installation/index.md'
  65. - 1. PostgreSQL: 'installation/1-postgresql.md'
  66. - 2. Redis: 'installation/2-redis.md'
  67. - 3. NetBox: 'installation/3-netbox.md'
  68. - 4. Gunicorn: 'installation/4-gunicorn.md'
  69. - 5. HTTP Server: 'installation/5-http-server.md'
  70. - 6. LDAP (Optional): 'installation/6-ldap.md'
  71. - Upgrading NetBox: 'installation/upgrading.md'
  72. - Migrating to systemd: 'installation/migrating-to-systemd.md'
  73. - Configuration:
  74. - Configuring NetBox: 'configuration/index.md'
  75. - Required Settings: 'configuration/required-settings.md'
  76. - Optional Settings: 'configuration/optional-settings.md'
  77. - Dynamic Settings: 'configuration/dynamic-settings.md'
  78. - Error Reporting: 'configuration/error-reporting.md'
  79. - Remote Authentication: 'configuration/remote-authentication.md'
  80. - Core Functionality:
  81. - IP Address Management: 'core-functionality/ipam.md'
  82. - VLAN Management: 'core-functionality/vlans.md'
  83. - Sites and Racks: 'core-functionality/sites-and-racks.md'
  84. - Devices and Cabling: 'core-functionality/devices.md'
  85. - Device Types: 'core-functionality/device-types.md'
  86. - Modules: 'core-functionality/modules.md'
  87. - Virtualization: 'core-functionality/virtualization.md'
  88. - Service Mapping: 'core-functionality/services.md'
  89. - Circuits: 'core-functionality/circuits.md'
  90. - Wireless: 'core-functionality/wireless.md'
  91. - Power Tracking: 'core-functionality/power.md'
  92. - Tenancy: 'core-functionality/tenancy.md'
  93. - Contacts: 'core-functionality/contacts.md'
  94. - Customization:
  95. - Custom Fields: 'customization/custom-fields.md'
  96. - Custom Validation: 'customization/custom-validation.md'
  97. - Custom Links: 'models/extras/customlink.md'
  98. - Export Templates: 'customization/export-templates.md'
  99. - Custom Scripts: 'customization/custom-scripts.md'
  100. - Reports: 'customization/reports.md'
  101. - Additional Features:
  102. - Change Logging: 'additional-features/change-logging.md'
  103. - Context Data: 'models/extras/configcontext.md'
  104. - Journaling: 'additional-features/journaling.md'
  105. - NAPALM: 'additional-features/napalm.md'
  106. - Prometheus Metrics: 'additional-features/prometheus-metrics.md'
  107. - Tags: 'models/extras/tag.md'
  108. - Webhooks: 'additional-features/webhooks.md'
  109. - Plugins:
  110. - Using Plugins: 'plugins/index.md'
  111. - Developing Plugins:
  112. - Getting Started: 'plugins/development/index.md'
  113. - Models: 'plugins/development/models.md'
  114. - Views: 'plugins/development/views.md'
  115. - Navigation: 'plugins/development/navigation.md'
  116. - Templates: 'plugins/development/templates.md'
  117. - Tables: 'plugins/development/tables.md'
  118. - Forms: 'plugins/development/forms.md'
  119. - Filters & Filter Sets: 'plugins/development/filtersets.md'
  120. - REST API: 'plugins/development/rest-api.md'
  121. - GraphQL API: 'plugins/development/graphql-api.md'
  122. - Background Tasks: 'plugins/development/background-tasks.md'
  123. - Exceptions: 'plugins/development/exceptions.md'
  124. - Administration:
  125. - Authentication:
  126. - Overview: 'administration/authentication/overview.md'
  127. - Microsoft Azure AD: 'administration/authentication/microsoft-azure-ad.md'
  128. - Okta: 'administration/authentication/okta.md'
  129. - Permissions: 'administration/permissions.md'
  130. - Error Reporting: 'administration/error-reporting.md'
  131. - Housekeeping: 'administration/housekeeping.md'
  132. - Replicating NetBox: 'administration/replicating-netbox.md'
  133. - NetBox Shell: 'administration/netbox-shell.md'
  134. - REST API:
  135. - Overview: 'rest-api/overview.md'
  136. - Filtering & Ordering: 'rest-api/filtering.md'
  137. - Authentication: 'rest-api/authentication.md'
  138. - GraphQL API:
  139. - Overview: 'graphql-api/overview.md'
  140. - Reference:
  141. - Conditions: 'reference/conditions.md'
  142. - Markdown: 'reference/markdown.md'
  143. - Development:
  144. - Introduction: 'development/index.md'
  145. - Getting Started: 'development/getting-started.md'
  146. - Style Guide: 'development/style-guide.md'
  147. - Models: 'development/models.md'
  148. - Adding Models: 'development/adding-models.md'
  149. - Extending Models: 'development/extending-models.md'
  150. - Signals: 'development/signals.md'
  151. - Application Registry: 'development/application-registry.md'
  152. - User Preferences: 'development/user-preferences.md'
  153. - Web UI: 'development/web-ui.md'
  154. - Release Checklist: 'development/release-checklist.md'
  155. - Release Notes:
  156. - Summary: 'release-notes/index.md'
  157. - Version 3.3: 'release-notes/version-3.3.md'
  158. - Version 3.2: 'release-notes/version-3.2.md'
  159. - Version 3.1: 'release-notes/version-3.1.md'
  160. - Version 3.0: 'release-notes/version-3.0.md'
  161. - Version 2.11: 'release-notes/version-2.11.md'
  162. - Version 2.10: 'release-notes/version-2.10.md'
  163. - Version 2.9: 'release-notes/version-2.9.md'
  164. - Version 2.8: 'release-notes/version-2.8.md'
  165. - Version 2.7: 'release-notes/version-2.7.md'
  166. - Version 2.6: 'release-notes/version-2.6.md'
  167. - Version 2.5: 'release-notes/version-2.5.md'
  168. - Version 2.4: 'release-notes/version-2.4.md'
  169. - Version 2.3: 'release-notes/version-2.3.md'
  170. - Version 2.2: 'release-notes/version-2.2.md'
  171. - Version 2.1: 'release-notes/version-2.1.md'
  172. - Version 2.0: 'release-notes/version-2.0.md'