https://github.com/ksbrwsk/pushover-notification-demo
Spring Boot App demonstrating the use of Pushover notifications.
https://github.com/ksbrwsk/pushover-notification-demo
push-notifications pushover pushover-notifications spring-boot
Last synced: 10 months ago
JSON representation
Spring Boot App demonstrating the use of Pushover notifications.
- Host: GitHub
- URL: https://github.com/ksbrwsk/pushover-notification-demo
- Owner: ksbrwsk
- Created: 2021-01-26T13:57:24.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-04-25T04:12:28.000Z (about 1 year ago)
- Last Synced: 2025-05-12T14:11:43.043Z (about 1 year ago)
- Topics: push-notifications, pushover, pushover-notifications, spring-boot
- Language: Java
- Homepage:
- Size: 125 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## pushover-notification-demo
Spring Boot App demonstrating the use of [Pushover](https://pushover.net/) notifications.
**Prerequisites:**
* [Java 21](https://openjdk.net/)
* [Apache Maven](https:http://maven.apache.org/)
#### How to build and run
Provide your Pushover API token and user key in the
application properties located under
```bash
./src/main/resources/application.yml
```
```yaml
pushover:
apiToken:
userId:
priority: NORMAL
title: Message
url: URL
titleForUrl: Title
sound: magic
```
Type
```bash
mvn package
mvn spring-boot:run
```
to build and run the application on your local environment.
Type
```bash
curl http://localhost:8080/greeting/NAME
```
to send a simple Pushover notification.