No description
Find a file
2025-03-22 14:23:57 +01:00
devices rename raspi-gpio.go to libgpiod.go 2025-03-22 14:09:45 +01:00
routes first commit 2025-03-22 13:19:55 +01:00
sessions show how long a session has existed for 2025-03-22 14:19:09 +01:00
.gitignore libgpiod support and better docs 2025-03-22 14:09:00 +01:00
cron.go first commit 2025-03-22 13:19:55 +01:00
env.go libgpiod support and better docs 2025-03-22 14:09:00 +01:00
go.mod first commit 2025-03-22 13:19:55 +01:00
index.tmpl fix column sizing 2025-03-22 14:20:02 +01:00
LICENSE.md first commit 2025-03-22 13:19:55 +01:00
main.go libgpiod support and better docs 2025-03-22 14:09:00 +01:00
README.md move example.sh into README.md 2025-03-22 14:23:57 +01:00

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 to ram.
    • ram: Sessions are stored in RAM.
  • WOLBODGE_DEVICE_TYPE: Device type to pick, defaults to test-
    • test: A dummy device, used for testing.
    • libgpiod: Uses the libgpiod commands under the hood. The gpio chip is specified using WOLBODGE_DEVICE_GPIOCHIP, the power button pin using WOLBODGE_DEVICE_POWER_BUTTON_PIN and the power LED pin using WOLBODGE_DEVICE_POWER_LED_PIN.

Usage example

Usage example for a backup script that backs up to a NAS that isn't online 24/7.

#!/usr/bin/env sh

# Start a new session
session_id=$(curl -s -X POST -F "description=Daily backup" http://localhost:3000/api/session)
exit_code=$?
if [ $exit_code != 0 ]; then
    echo "Failed to create session"
    exit 1
fi

echo "Aquired session with id $session_id"

# 1. Wait for the PC to come online (using a ping-loop for example)
# 2. Do your backup here
sleep 5

# End the session after we are done using it
curl -s -X DELETE http://localhost:3000/api/session/$session_id
exit_code=$?
if [ $exit_code != 0 ]; then
    echo "Failed to delete session"
    exit 1
fi