[WIP] A simple wake-on-lan service
1# WOL
2
3A simple wake-on-lan webapp.
4
5Configuration is read from `wol.toml` from the current directory.
6
7```toml
8# wol.toml
9binding = "0.0.0.0:3000" # default address
10
11[targets]
12# human friendly name = mac address
13computer = "01:02:03:04:05:06"
14server = "11:12:13:14:15:16"
15```
16
17```yaml
18# compose.yaml
19services:
20 wol:
21 build: https://tangled.org/vielle.dev/wol.git
22 ports: ["3000:3000"]
23 volumes: ["./wol.toml:/app/wol.toml"]
24```