mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2026-03-22 08:16:54 +00:00
Refactor plugins.py to remove commented-out code and simplify PLUGINS_CONFIG; update netbox.env to ensure DB_WAIT_DEBUG is set
This commit is contained in:
parent
0bef7cfdca
commit
9e7ac3610e
|
|
@ -1,18 +1,3 @@
|
|||
# Add your plugins and plugin settings here.
|
||||
# Of course uncomment this file out.
|
||||
|
||||
# To learn how to build images with your required plugins
|
||||
# See https://github.com/netbox-community/netbox-docker/wiki/Using-Netbox-Plugins
|
||||
|
||||
# PLUGINS = ["netbox_bgp"]
|
||||
|
||||
# PLUGINS_CONFIG = {
|
||||
# "netbox_bgp": {
|
||||
# ADD YOUR SETTINGS HERE
|
||||
# }
|
||||
# }
|
||||
|
||||
|
||||
PLUGINS = [
|
||||
"netbox_topology_views",
|
||||
"netbox_lifecycle",
|
||||
|
|
@ -20,9 +5,4 @@ PLUGINS = [
|
|||
"netbox_qrcode",
|
||||
]
|
||||
|
||||
PLUGINS_CONFIG = {
|
||||
# Beispiel für Topology Views, falls nötig:
|
||||
# "netbox_topology_views": {
|
||||
# "some_setting": "value"
|
||||
# }
|
||||
}
|
||||
PLUGINS_CONFIG = {}
|
||||
|
|
|
|||
1
env/netbox.env
vendored
1
env/netbox.env
vendored
|
|
@ -3,6 +3,7 @@ DB_HOST=postgres
|
|||
DB_NAME=netbox
|
||||
DB_PASSWORD=J5brHrAXFLQSif0K
|
||||
DB_USER=netbox
|
||||
DB_WAIT_DEBUG=1
|
||||
EMAIL_FROM=netbox@bar.com
|
||||
EMAIL_PASSWORD=
|
||||
EMAIL_PORT=25
|
||||
|
|
|
|||
Loading…
Reference in a new issue