/pushover-notification-demo

Spring Boot App demonstrating the use of Pushover notifications.

Primary LanguageJava

pushover-notification-demo

Spring Boot App demonstrating the use of Pushover notifications.

Prerequisites:

How to build and run

Provide your Pushover API token and user key in the application properties located under

./src/main/resources/application.yml
pushover:
  apiToken: <YOUR PUSHOVER API TOKEN>
  userId: <YOUR PUSHOVER ID>
  priority: NORMAL
  title: Message
  url: URL
  titleForUrl: Title
  sound: magic

Type

mvn package
mvn spring-boot:run

to build and run the application on your local environment.

Type

curl http://localhost:8080/greeting/NAME

to send a simple Pushover notification.