1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

147 lines
6.1 KiB
YAML
Raw Normal View History

2020-02-26 11:40:31 -05:00
site_name: NetBox Documentation
site_dir: netbox/project-static/docs
2020-02-26 11:40:31 -05:00
site_url: https://netbox.readthedocs.io/
2021-07-28 15:07:46 -04:00
repo_name: netbox-community/netbox
repo_url: https://github.com/netbox-community/netbox
2020-02-26 11:40:31 -05:00
theme:
2021-02-24 21:21:17 -05:00
name: material
2021-07-28 16:26:04 -04:00
icon:
repo: fontawesome/brands/github
palette:
- scheme: default
toggle:
icon: material/lightbulb-outline
name: Switch to Dark Mode
- scheme: slate
toggle:
icon: material/lightbulb
name: Switch to Light Mode
2022-01-19 16:44:18 -05:00
plugins:
- mkdocstrings:
handlers:
python:
setup_commands:
- import os
- import django
2022-01-20 09:27:37 -05:00
- os.chdir('netbox/')
2022-01-19 16:44:18 -05:00
- os.environ.setdefault("DJANGO_SETTINGS_MODULE", "netbox.settings")
- django.setup()
rendering:
show_root_heading: true
show_root_full_path: false
show_root_toc_entry: false
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/netbox-community/netbox
- icon: fontawesome/brands/slack
2021-09-15 11:46:58 -04:00
link: https://netdev.chat/
extra_css:
- extra.css
2020-02-26 11:40:31 -05:00
markdown_extensions:
2021-02-24 21:21:17 -05:00
- admonition
2021-07-28 15:12:17 -04:00
- attr_list
2020-03-05 10:47:12 -05:00
- markdown_include.include:
2021-09-15 11:46:58 -04:00
base_path: 'docs/'
2020-03-05 10:47:12 -05:00
headingOffset: 1
2021-04-02 16:29:01 -04:00
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
2021-02-24 21:21:17 -05:00
- pymdownx.superfences
- pymdownx.tabbed
2020-02-26 11:40:31 -05:00
nav:
2018-07-17 17:23:10 -04:00
- Introduction: 'index.md'
- Installation:
- Installing NetBox: 'installation/index.md'
- 1. PostgreSQL: 'installation/1-postgresql.md'
2020-02-26 11:40:31 -05:00
- 2. Redis: 'installation/2-redis.md'
- 3. NetBox: 'installation/3-netbox.md'
2020-07-20 16:53:04 -04:00
- 4. Gunicorn: 'installation/4-gunicorn.md'
- 5. HTTP Server: 'installation/5-http-server.md'
- 6. LDAP (Optional): 'installation/6-ldap.md'
2018-07-17 17:23:10 -04:00
- Upgrading NetBox: 'installation/upgrading.md'
- Migrating to systemd: 'installation/migrating-to-systemd.md'
2018-07-17 17:23:10 -04:00
- Configuration:
- Configuring NetBox: 'configuration/index.md'
- Required Settings: 'configuration/required-settings.md'
- Optional Settings: 'configuration/optional-settings.md'
2021-10-26 15:40:34 -04:00
- Dynamic Settings: 'configuration/dynamic-settings.md'
- Remote Authentication: 'configuration/remote-authentication.md'
2018-07-17 17:23:10 -04:00
- Core Functionality:
- IP Address Management: 'core-functionality/ipam.md'
- VLAN Management: 'core-functionality/vlans.md'
2018-07-17 17:23:10 -04:00
- Sites and Racks: 'core-functionality/sites-and-racks.md'
- Devices and Cabling: 'core-functionality/devices.md'
2020-03-05 16:26:23 -05:00
- Device Types: 'core-functionality/device-types.md'
2021-12-20 10:31:18 -05:00
- Modules: 'core-functionality/modules.md'
- Virtualization: 'core-functionality/virtualization.md'
- Service Mapping: 'core-functionality/services.md'
2018-07-17 17:23:10 -04:00
- Circuits: 'core-functionality/circuits.md'
2021-10-20 11:22:56 -04:00
- Wireless: 'core-functionality/wireless.md'
- Power Tracking: 'core-functionality/power.md'
2020-07-30 13:02:53 -04:00
- Tenancy: 'core-functionality/tenancy.md'
2021-10-18 16:20:31 -04:00
- Contacts: 'core-functionality/contacts.md'
2021-06-24 08:37:06 -04:00
- Customization:
- Custom Fields: 'customization/custom-fields.md'
- Custom Validation: 'customization/custom-validation.md'
- Custom Links: 'models/extras/customlink.md'
2021-06-24 08:37:06 -04:00
- Export Templates: 'customization/export-templates.md'
- Custom Scripts: 'customization/custom-scripts.md'
- Reports: 'customization/reports.md'
2018-07-17 17:23:10 -04:00
- Additional Features:
- Change Logging: 'additional-features/change-logging.md'
2020-07-30 11:36:46 -04:00
- Context Data: 'models/extras/configcontext.md'
- Journaling: 'additional-features/journaling.md'
2020-01-08 15:54:09 +00:00
- NAPALM: 'additional-features/napalm.md'
- Prometheus Metrics: 'additional-features/prometheus-metrics.md'
2020-07-30 11:36:46 -04:00
- Tags: 'models/extras/tag.md'
2018-07-17 17:23:10 -04:00
- Webhooks: 'additional-features/webhooks.md'
- Plugins:
- Using Plugins: 'plugins/index.md'
2022-01-19 16:44:18 -05:00
- Developing Plugins:
- Introduction: 'plugins/development/index.md'
- Model Features: 'plugins/development/model-features.md'
- Developing Plugins (Old): 'plugins/development.md'
- Administration:
2021-11-02 11:49:10 -04:00
- Authentication: 'administration/authentication.md'
- Permissions: 'administration/permissions.md'
- Housekeeping: 'administration/housekeeping.md'
- Replicating NetBox: 'administration/replicating-netbox.md'
- NetBox Shell: 'administration/netbox-shell.md'
- REST API:
- Overview: 'rest-api/overview.md'
- Filtering: 'rest-api/filtering.md'
- Authentication: 'rest-api/authentication.md'
2021-06-30 09:35:50 -04:00
- GraphQL API:
- Overview: 'graphql-api/overview.md'
2021-10-25 09:52:08 -04:00
- Reference:
- Conditions: 'reference/conditions.md'
2018-07-17 17:23:10 -04:00
- Development:
2018-07-27 13:42:18 -04:00
- Introduction: 'development/index.md'
- Getting Started: 'development/getting-started.md'
2018-11-12 14:36:09 -05:00
- Style Guide: 'development/style-guide.md'
2021-04-02 16:29:01 -04:00
- Models: 'development/models.md'
- Adding Models: 'development/adding-models.md'
- Extending Models: 'development/extending-models.md'
2021-06-09 11:39:44 -04:00
- Signals: 'development/signals.md'
- Application Registry: 'development/application-registry.md'
2020-04-24 09:23:58 -04:00
- User Preferences: 'development/user-preferences.md'
- Web UI: 'development/web-ui.md'
- Release Checklist: 'development/release-checklist.md'
2019-10-10 12:02:53 -04:00
- Release Notes:
2021-11-03 11:47:11 -04:00
- Summary: 'release-notes/index.md'
- Version 3.1: 'release-notes/version-3.1.md'
2021-06-09 13:20:46 -04:00
- Version 3.0: 'release-notes/version-3.0.md'
2021-03-31 14:24:43 -04:00
- Version 2.11: 'release-notes/version-2.11.md'
2020-11-17 14:11:47 -05:00
- Version 2.10: 'release-notes/version-2.10.md'
2020-09-04 16:09:05 -04:00
- Version 2.9: 'release-notes/version-2.9.md'
2020-03-04 14:33:55 -05:00
- Version 2.8: 'release-notes/version-2.8.md'
2020-01-16 12:57:24 -05:00
- Version 2.7: 'release-notes/version-2.7.md'
2019-10-10 12:02:53 -04:00
- Version 2.6: 'release-notes/version-2.6.md'
- Version 2.5: 'release-notes/version-2.5.md'
- Version 2.4: 'release-notes/version-2.4.md'
- Version 2.3: 'release-notes/version-2.3.md'
- Version 2.2: 'release-notes/version-2.2.md'
- Version 2.1: 'release-notes/version-2.1.md'
- Version 2.0: 'release-notes/version-2.0.md'