You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Note:** the sensor does not support HTTPS but this could be accomplished by fronting the sensor with Nginx/Apache/etc, which would terminate the SSL connection and then proxy the request to the sensor over HTTP.
65
+
66
+
# How to update the pack
67
+
68
+
The pack is auto generated from the NetBox OpenAPI (Swagger) spec file. To update the pack, follow these steps:
69
+
70
+
1. Create a virtual environment and install the required dependencies:
71
+
```shell
72
+
virtualenv -p python3 venv
73
+
source venv/bin/activate
74
+
pip install -r requirements.txt
75
+
```
76
+
77
+
2. Change to `bin` directory and run the `generate.py` script:
0 commit comments