Skip to content

Commit 3ae8e9a

Browse files
authored
feat: expose some config options as env variables (#1099)
Includes global and some MQTT options for now. Closes #1094
1 parent ee057d8 commit 3ae8e9a

File tree

6 files changed

+30
-3
lines changed

6 files changed

+30
-3
lines changed

docs/guide/configuration.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Having trouble with your configuration? You can launch room-assistant with the `
1414

1515
## Configuring with Docker
1616

17-
The official [Docker image](https://hub.docker.com/r/mkerix/room-assistant/) can be configured in two different ways. You can either mount your local config folder into the container as `/room-assistant/config` or you can provide the configuration as JSON through an environment variable.
17+
The official [Docker image](https://hub.docker.com/r/mkerix/room-assistant/) can be configured in two different ways. You can either mount your local config folder into the container as `/room-assistant/config` or you can provide the configuration as JSON through an environment variable. Some settings may also be configured via special environment variables, in those cases the variable names are documented next to the options.
1818

1919
::: details Example docker-compose.yml
2020

@@ -27,10 +27,10 @@ services:
2727
volumes:
2828
- /var/run/dbus:/var/run/dbus
2929
environment:
30+
RA_GLOBAL_INSTANCE_NAME: living-room
3031
NODE_CONFIG: >
3132
{
3233
"global": {
33-
"instanceName": "living-room",
3434
"integrations": ["homeAssistant", "bluetoothClassic"]
3535
}
3636
}
@@ -50,7 +50,10 @@ room-assistant exposes a few settings that affect the overall behavior of the ap
5050
| `integrations` | Array | | The integrations that should be loaded on this instance, denoted as camelCase. |
5151
| `apiPort` | Number | `6415` | The port that the REST API should be available on. |
5252

53+
These settings may also be configured as environment variables, using `RA_GLOBAL_INSTANCE_NAME`, `RA_GLOBAL_INTEGRATIONS` and `RA_GLOBAL_API_PORT`.
54+
5355
::: details Example Config
56+
5457
```yaml
5558
global:
5659
instanceName: bedroom

docs/integrations/home-assistant.md

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ room-assistant makes use of the [MQTT auto discovery](https://www.home-assistant
3535
| `password` | String | | Password for authentication |
3636
| `rejectUnauthorized` | Boolean | `true` | Whether MQTTS connections should fail for invalid certificates or not. Set this to `false` if you are using a self-signed certificate and connect via TLS. |
3737

38+
Some of these settings may also be configured as environment variables, using `RA_HOME_ASSISTANT_MQTT_URL`, `RA_HOME_ASSISTANT_MQTT_USERNAME` and `RA_HOME_ASSISTANT_MQTT_PASSWORD`.
39+
3840
::: details Example Config
3941

4042
```yaml

docs/integrations/mqtt.md

+2
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,8 @@ To get started with your automations based on these topics it is recommended to
115115
| `password` | String | | Password for authentication |
116116
| `rejectUnauthorized` | Boolean | `true` | Whether MQTTS connections should fail for invalid certificates or not. Set this to `false` if you are using a self-signed certificate and connect via TLS. |
117117

118+
Some of these settings may also be configured as environment variables, using `RA_MQTT_MQTT_URL`, `RA_MQTT_MQTT_USERNAME` and `RA_MQTT_MQTT_PASSWORD`.
119+
118120
::: details Example Config
119121

120122
```yaml

nest-cli.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"collection": "@nestjs/schematics",
33
"sourceRoot": "src",
44
"compilerOptions": {
5-
"plugins": ["@nestjs/swagger/plugin"]
5+
"plugins": ["@nestjs/swagger/plugin"],
6+
"assets": ["config/definitions/*.yml"]
67
}
78
}

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"types": "dist/src/main.d.ts",
2222
"files": [
2323
"dist/**/*.{js,ts}",
24+
"dist/config/definitions/*.yml",
2425
"bin/*.js",
2526
".github/FUNDING.yml"
2627
],
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
global:
2+
instanceName: RA_GLOBAL_INSTANCE_NAME
3+
integrations:
4+
__name: RA_GLOBAL_INTEGRATIONS
5+
__format: json
6+
apiPort:
7+
__name: RA_GLOBAL_API_PORT
8+
__format: number
9+
homeAssistant:
10+
mqttUrl: RA_HOME_ASSISTANT_MQTT_URL
11+
mqttOptions:
12+
username: RA_HOME_ASSISTANT_MQTT_USERNAME
13+
password: RA_HOME_ASSISTANT_MQTT_PASSWORD
14+
mqtt:
15+
mqttUrl: RA_MQTT_MQTT_URL
16+
mqttOptions:
17+
username: RA_MQTT_MQTT_USERNAME
18+
password: RA_MQTT_MQTT_PASSWORD

0 commit comments

Comments
 (0)