An open API service indexing awesome lists of open source software.

https://github.com/jonathas/home-automation-helpers

A REST API which contains endpoints I've implemented to help me with my home automations
https://github.com/jonathas/home-automation-helpers

go golang home-assistant home-automation iot voicemonkey

Last synced: 5 months ago
JSON representation

A REST API which contains endpoints I've implemented to help me with my home automations

Awesome Lists containing this project

README

          

# Home Automation Helpers

This is a REST API which contains endpoints I've implemented to help me with my home automations.

It's intended to run locally and be called locally.

## Docs

A Postman collection can be found inside of the /docs directory

## Compiling

For running it on a Raspberry Pi, compile it to arm:

```bash
env GOOS=linux GOARCH=arm GOARM=5 go build
```

## Configuration

- Set your VoiceMonkey token in the .env file
- Compile the project and keep the .env file next to it when running
- A systemd service file is provided inside of the /resources directory
- Copy it to /etc/systemd/system
- Run:
- sudo systemctl daemon-reload
- sudo systemctl enable home-automation-helpers
- sudo systemctl start home-automation-helpers