Skip to content

Package

nautobot_dev_example

App declaration for nautobot_dev_example.

NautobotDevExampleConfig

Bases: NautobotAppConfig

App configuration for the nautobot_dev_example app.

Source code in nautobot_dev_example/__init__.py
class NautobotDevExampleConfig(NautobotAppConfig):
    """App configuration for the nautobot_dev_example app."""

    name = "nautobot_dev_example"
    verbose_name = "Nautobot Dev Example App"
    version = __version__
    author = "Network to Code, LLC"
    description = "Nautobot App to demonstrate how to create a Nautobot App.."
    base_url = "dev-example"
    required_settings = []
    min_version = "2.0.0"
    max_version = "2.9999"
    default_settings = {}
    caching_config = {}
    docs_view_name = "plugins:nautobot_dev_example:docs"