We are excited to announce the initial release of the NetBox Plugin Reloader!
**Features:**
- Dynamically registers plugin models that were missed during server startup
- Refreshes custom field form definitions to include newly registered models
- Helps solve integration issues between NetBox and other plugins
- No configuration required - works out of the box
**Installation:**
The plugin is available as a Python package on PyPI and can be installed with pip:
bash
pip install netbox-plugin-reloader
To enable the plugin, add it to the `PLUGINS` list in your `configuration.py`:
python
PLUGINS = [
'other_plugin',
'another_plugin',
'netbox-plugin-reloader', Always add netbox_plugin_reloader last!
]