diff --git a/README.md b/README.md index 1117e94..d831c28 100644 --- a/README.md +++ b/README.md @@ -8,3 +8,31 @@ Configuration is done using environment variables. - `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. +```sh +#!/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 +``` diff --git a/example.sh b/example.sh deleted file mode 100755 index 182415b..0000000 --- a/example.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env sh -# Example for a backup script - -# 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