
Fernando K pushed to branch main at Root / Serviços / Netbox Commits: b2c587cc by Fernando Monteiro Kiotheka at 2025-08-15T13:55:47-03:00 feat: add config for plugin static file generation - - - - - 2 changed files: - Containerfile - + configuration.py Changes: ===================================== Containerfile ===================================== @@ -6,6 +6,7 @@ COPY plugin-requirements.txt /opt/netbox/plugin-requirements.txt RUN /usr/local/bin/uv pip install -r /opt/netbox/plugin-requirements.txt # These lines are only required if your plugin has its own static files. +COPY configuration.py /opt/netbox/netbox/configuration.py RUN DEBUG="true" SECRET_KEY="dummydummydummydummydummydummydummydummydummydummy" \ /opt/netbox/venv/bin/python /opt/netbox/netbox/manage.py collectstatic --no-input ===================================== configuration.py ===================================== @@ -0,0 +1,8 @@ +PLUGINS = [ + "netbox_dns", + "netbox_floorplan", + "netbox_documents", + "netbox_topology_views", + "netbox_proxmox_import", + "netbox_backups", +] View it on GitLab: https://gitlab.c3sl.ufpr.br/root/services/netbox/-/commit/b2c587ccca2e2f0977... -- View it on GitLab: https://gitlab.c3sl.ufpr.br/root/services/netbox/-/commit/b2c587ccca2e2f0977... You're receiving this email because of your account on gitlab.c3sl.ufpr.br.