A drop-in, single-binary reimplementation of the caronc/apprise-api HTTP API in Go.
0

Configure Feed

Select the types of activity you want to include in your feed.

add quick start

Kohei Watanabe (Jun 8, 2026, 9:54 PM +0900) 62488a1a af91191d

+11 -9
+11 -9
README.md
··· 2 2 3 3 A drop-in, single-binary reimplementation of the [caronc/apprise-api](https://github.com/caronc/apprise-api) HTTP API in Go. Speaks the same stateless routes and response shapes as Apprise API `swagger.yaml` v1.5.0, backed by [unraid/apprise-go](https://github.com/unraid/apprise-go) for delivery — pure Go, no cgo, no Python runtime. 4 4 5 - ## Build & run 5 + ## Quick start 6 6 7 - Requires Go 1.26+. 7 + ### Docker Hub 8 8 9 9 ```sh 10 - go build 11 - ./apprize --bind :8000 10 + docker run --rm -p 8000:8000 fogtype/apprize:latest 12 11 ``` 13 12 14 - ### Docker 13 + ### Go install 15 14 16 15 ```sh 17 - docker build -t apprize . 18 - docker run --rm -p 8000:8000 apprize 16 + go install git.fogtype.com/nebel/apprize@latest 17 + apprize --bind :8000 19 18 ``` 20 19 21 - The image runs `apprize` directly and defaults to: 20 + ### Build from source 22 21 23 - - `APPRIZE_BIND=:8000` 22 + ```sh 23 + go build 24 + ./apprize --bind :8000 25 + ``` 24 26 25 27 ## Configuration 26 28