Files
scrypted/plugins/arlo/.vscode/settings.json
Brett Jia 473f2738cc arlo: 0.2.0 with mqtt under the hood (#215)
* REST timeouts, infrequent heartbeats, fix queue cycling bug

* cache auth headers in storage

* bump

* heartbeat all basestations on motion subscription, return rtsp url immediately, fix dropped event bug

* bump

* consolidate basestation heartbeats

* bump

* handle new streamURL event

* bump

* return stream url on startUserStream event too

* bump

* settings change for docker debugging

* snapshot from prebuffer when available

* bump

* reduce latency of checking for events

* bump

* initial testing

* working mqtt implementation

* bump to 0.2.0
2022-04-09 17:35:04 -07:00

27 lines
1.1 KiB
JSON

{
// specify the following paths on the target scrypted server:
// 1) where @scrypted/server node module resides: this may either be a checkout or a install.
// 2) where the scrypted "volume" data is located on the server. ie, the docker volume.
// the following default examples are provided for local and docker installations,
// only modifying the debugHost should be necessary:
// local installation
// "scrypted.debugHost": "192.168.2.119",
// "scrypted.serverRoot": "/home/pi/.scrypted/node_modules/@scrypted/server",
// "scrypted.volumeRoot": "/home/pi/.scrypted/volume",
// docker installation
// "scrypted.debugHost": "192.168.2.109",
"scrypted.serverRoot": "/server/node_modules/@scrypted/server",
"scrypted.volumeRoot": "/server/volume",
// local checkout
"scrypted.debugHost": "127.0.0.1",
//"scrypted.serverRoot": "/Volumes/Dev/scrypted/server",
//"scrypted.volumeRoot": "${config:scrypted.serverRoot}/volume",
"python.analysis.extraPaths": [
"./node_modules/@scrypted/sdk/scrypted_python"
]
}