tbotnz / netbox_floorplan

GNU Lesser General Public License v3.0
80 stars 20 forks source link

PyPI #2

Open ingvaldlorentzen opened 1 year ago

ingvaldlorentzen commented 1 year ago

Hi,

Would love to test this plugin, but I was unable to find it on PyPI.

Would you mind publishing it there? Or am I searching incorrectly?

danner26 commented 1 year ago

If @tbotnz would like some help getting this packaged and automated, I would be happy to assist

deku-m commented 1 year ago

Hi,

Would love to test this plugin, but I was unable to find it on PyPI.

Would you mind publishing it there? Or am I searching incorrectly?

Meantime you can test it by placing the following in the local_requirements.txt or plugin.txt: git+https://github.com/tbotnz/netbox_floorplan

amyers1616 commented 1 year ago

Meantime you can test it by placing the following in the local_requirements.txt or plugin.txt: git+https://github.com/tbotnz/netbox_floorplan

Confirmed this worked in Netbox v3.6.0

riborg commented 1 year ago

Any ideas how to get this to work in a Docker installation?

tbotnz commented 1 year ago

@riborg you should be able to pip install from git using the venvs python

bobbwest commented 1 year ago

@riborg if you're using netbox-docker you can follow the instructions at: https://github.com/netbox-community/netbox-docker/wiki/Using-Netbox-Plugins

riborg commented 1 year ago

I finally got it to run. Had to tweak the Dockerfile-Plugins with

RUN apt-get update && apt-get install -y git

because git is not included in the image..

KuriKai commented 11 months ago

I finally got it to run. Had to tweak the Dockerfile-Plugins with

RUN apt-get update && apt-get install -y git

because git is not included in the image..

What were your steps?

riborg commented 11 months ago

I finally got it to run. Had to tweak the Dockerfile-Plugins with RUN apt-get update && apt-get install -y git because git is not included in the image..

What were your steps?

In Dockerfile-Plugins add RUN apt-get update && apt-get install -y git In plugin_requirements.txt add git+https://github.com/tbotnz/netbox_floorplan In configuration/plugins.py add PLUGINS = ["netbox_floorplan"]

Then follow NetBox Docker guide to build the image..