aboutsummaryrefslogblamecommitdiff
path: root/README.md
blob: 88f786a9d7895669b3459d9770d1fc4fde1e6ed3 (plain) (tree)
1
2
3
4
5
6
7
8
9

       






                                    
 



                              
 
         
 










                                     
# webol

## Config
Default `config.toml`:
```toml
serveraddr = "0.0.0.0:7229" # String
pingtimeout = 10 # i64
pingthreshold = 1 # i64
timeoffset = 0 # i8

[auth]
method = "none" # "none"|"key"
secret = "" # String
```

## Docker

minimal `docker-compose.yaml`:
```yaml
services:
  webol:
    image: ghcr.io/fxqnlr/webol:0.4.0
    container_name: webol
    restart: unless-stopped
    volumes:
      - ./devices:/devices
    network_mode: host
```