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
You may also configure hyperion.rs using a TOML representation of the configuration. To generate the initial file, you can use the `--dump-config` option:
52
+
53
+
```bash
54
+
$ hyperiond-rs --dump-config >config.toml
55
+
```
56
+
57
+
Then, you can start the daemon using this config file:
58
+
59
+
```bash
60
+
$ hyperiond-rs --config config.toml
61
+
```
62
+
63
+
The minimal configuration required is as follows:
64
+
65
+
```toml
66
+
[instances.0.instance]
67
+
friendlyName = 'Test instance'
68
+
enabled = true
69
+
70
+
[instances.0.device]
71
+
type = 'dummy'
72
+
```
73
+
47
74
## Running hyperion.rs
48
75
49
76
Once your settings database has been migrated, you can run hyperion.rs using
0 commit comments