No description
devices | ||
routes | ||
sessions | ||
.gitignore | ||
cron.go | ||
env.go | ||
example.sh | ||
go.mod | ||
index.tmpl | ||
LICENSE.md | ||
main.go | ||
README.md |
WoLBodge
Configuration
Configuration is done using environment variables.
WOLBODGE_ADDRESS
: The address that WoLBodge should listen on, defaults to:3000
.WOLBODGE_STORAGE_TYPE
: Storage type to pick, defaults toram
.ram
: Sessions are stored in RAM.
WOLBODGE_DEVICE_TYPE
: Device type to pick, defaults totest
-test
: A dummy device, used for testing.libgpiod
: Uses the libgpiod commands under the hood. The gpio chip is specified usingWOLBODGE_DEVICE_GPIOCHIP
, the power button pin usingWOLBODGE_DEVICE_POWER_BUTTON_PIN
and the power LED pin usingWOLBODGE_DEVICE_POWER_LED_PIN
.