2021-09-25 15:50:45 +02:00
|
|
|
{ actor_connections =
|
|
|
|
-- Link up machines to actors
|
|
|
|
[ { _1 = "Testmachine", _2 = "Shelly_1234" }
|
|
|
|
, { _1 = "Another", _2 = "Bash" }
|
|
|
|
, { _1 = "Yetmore", _2 = "Bash2" }
|
|
|
|
, { _1 = "Yetmore", _2 = "FailBash" }
|
|
|
|
]
|
|
|
|
, actors = ./actors.dhall
|
|
|
|
, init_connections = [] : List { _1 : Text, _2 : Text }
|
|
|
|
, initiators = ./initiators.dhall
|
|
|
|
, listens =
|
2021-01-20 12:55:15 +01:00
|
|
|
[ { address = "127.0.0.1", port = Some 59661 }
|
|
|
|
, { address = "::1", port = Some 59661 }
|
2021-09-21 07:48:19 +02:00
|
|
|
, { address = "192.168.0.114", port = Some 59661 }
|
2021-01-20 12:55:15 +01:00
|
|
|
]
|
2021-09-25 15:50:45 +02:00
|
|
|
, machines = ./machines.dhall
|
2021-09-19 19:47:29 +02:00
|
|
|
, db_path = "/tmp/bffh"
|
2021-09-25 15:50:45 +02:00
|
|
|
, roles = ./roles.dhall
|
|
|
|
, mqtt_url = "tcp://localhost:1883"
|
2020-12-15 13:04:21 +01:00
|
|
|
}
|