mirror of
https://github.com/koush/scrypted.git
synced 2026-03-12 13:33:17 +00:00
* fix doorbell device type * bump 0.7.1 for beta * standalone camera fixes * bump 0.7.2 for beta * more type annotations + trickle discover all devices * fetch arlo library clips * log options * cache library at lower level and fetch clips on demand * move library timedelta range lower in stack * wip siren as security system * virtual security system and tweaks * vss documentation and settings * expand vss usage docs * more docs changes * force homekit and scrypted to update given vss and siren state * RE-ENABLING SIREN!!! * bump 0.7.3 for beta * bump 0.7.3 for release
27 lines
1.1 KiB
JSON
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/types/scrypted_python"
|
|
]
|
|
} |