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 usage examples

Kohei Watanabe (Jun 8, 2026, 11:50 PM +0900) 0fee901d 52162cfe

+32 -8
+32 -8
README.md
··· 4 4 5 5 ## Quick start 6 6 7 + Start the server: 8 + 9 + ```sh 10 + docker run --rm -p 8000:8000 fogtype/apprize 11 + ``` 12 + 13 + Send a notification: 14 + 15 + ```sh 16 + # ntfy - watch it land at https://ntfy.sh/apprize-demo 17 + curl localhost:8000/notify \ 18 + -d 'urls=ntfy://apprize-demo' \ 19 + -d body=hello 20 + 21 + # email - needs real SMTP credentials 22 + curl localhost:8000/notify \ 23 + -d 'urls=mailtos://user:pass@gmail.com' \ 24 + -d body=hello 25 + ``` 26 + 27 + [other services](https://appriseit.com/services/) 28 + 29 + ## Install 30 + 7 31 ```sh 8 32 # Docker 9 - docker run --rm -p 8000:8000 fogtype/apprize:latest 33 + docker run --rm -p 8000:8000 fogtype/apprize 10 34 11 35 # Podman 12 - podman run --rm -p 8000:8000 fogtype/apprize:latest 36 + podman run --rm -p 8000:8000 fogtype/apprize 13 37 14 - # Go install 38 + # Go 15 39 go install git.fogtype.com/nebel/apprize@latest 16 40 apprize --bind :8000 17 41 ··· 24 48 25 49 ### Docker Compose 26 50 27 - ```sh 28 - docker compose up -d 29 - ``` 30 - 31 51 ```yaml 32 52 # compose.yml 33 53 services: 34 54 apprize: 35 - image: fogtype/apprize:latest 55 + image: fogtype/apprize 36 56 restart: unless-stopped 37 57 ports: 38 58 - "8000:8000" 59 + ``` 60 + 61 + ```sh 62 + docker compose up -d 39 63 ``` 40 64 41 65 ## Configuration