Receive data from devices in your space and publish them as part of your SpaceAPI JSON :3
Find a file
2024-01-13 23:27:21 +01:00
config Major Refactoring 2023-11-09 22:30:03 +01:00
handlers Major Refactoring 2023-11-09 22:30:03 +01:00
types First working? version with persistent state 2023-11-10 03:24:12 +01:00
util Add log output in util.MergeOldState 2024-01-13 23:25:07 +01:00
.gitignore Small refactoring 2024-01-06 19:43:51 +01:00
config-template.json Rename config template and switch to new format 2024-01-13 23:27:21 +01:00
go.mod Initial commit 2023-11-04 21:07:27 +01:00
LICENSE Add BSD-3-Clause LICENSE 2023-11-04 21:07:40 +01:00
main.go Small refactoring 2024-01-06 19:43:51 +01:00
README.md Update README.md with new env var names 2023-11-09 22:30:07 +01:00

SpaceAPI Daemon

spaceapid serves a SpaceAPI-compatible JSON on port 8080:

curl -X GET http://localhost:8080

The state of the boolean state->open property can be modified via /state/open:

curl -X PUT -u user:password -d true http://localhost:8080/state/open

Building

See the go.mod file for minimum required Go version. There are currently no dependencies apart from the Go standard library.

go build .

Running

Substitute the environment variables with appropriate custom values.

env BA_USERNAME=user BA_PASSWORD=password JSON_TEMPLATE_PATH=ccchh-template.json go run .