-
Notifications
You must be signed in to change notification settings - Fork 5
/
template_config.js
41 lines (32 loc) · 1.88 KB
/
template_config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* Configuration file */
/* Rename file to config.js before editing */
module.exports = {
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Landroid settings - these must be set correctly regardless of home automation system
/** The PIN code to your Landroid */
pinCode: "YOUR PIN CODE", // <---- MUST ALWAYS BE EDITED!!!
/**
* The URL where your Worx Landroid is accessible by a web browser. Examples: "https://192.168.0.5", "http://mylandroid.dynamic-ip-provider:8080"
* The default "http://Landroid" is how the Landroid identifies itself on the network, and should work in most cases where
* this application and the Landroid are on the same network. (NOTE! No '/' at the end)
*/
landroidUrl: "http://Landroid",
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Settings needed if you plan to use Domoticz
/**
* The URL to the Domoticz server. The default setting assumes the server is running on the same unit as this app,
* on the default port (8080)
*/
domoticzUrl: "http://localhost:8080",
/** The URL of your MQTT broker, such as Mosquitto. Public server mqtt://test.mosquitto.org may be used for testing */
mqttBrokerUrl: 'mqtt://localhost',
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Settings needed if you plan to use Home Assistant
/**
* The URL where Home Assistant web UI is available. Defaults to the same computer as this app is run, with the default
* Home Assistant port.
*/
homeAssistantUrl: "http://localhost:8123",
/** The password you have chosen for Home Assistant */
homeAssistantPassword: "YOUR HOME ASSISTANT PASSWORD" // <---- Must be edited if you plan to use Home Assistant!!!
};