-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplingding.yaml.example
49 lines (43 loc) · 1.82 KB
/
plingding.yaml.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Plingding Configuration File
#
# This file configures the push notification providers for Plingding.
# Copy this file to one of the following locations and modify it:
# - ~/.plingding.yaml
# - ~/.config/plingding/plingding.yaml
# - ./plingding.yaml (in the current working directory)
# List of push providers
providers:
# Pushover provider example
- name: "pushover_personal"
provider_type: "pushover"
api_key: "your_pushover_api_key_here"
user_key: "your_pushover_user_key_here"
default: true # This provider will be used by default if no providers are specified in the CLI
# Another Pushover provider with different configuration
- name: "pushover_work"
provider_type: "pushover"
api_key: "your_work_pushover_api_key_here"
user_key: "your_work_pushover_user_key_here"
# Note: default is false if not specified
# ntfy provider example
- name: "ntfy_personal"
provider_type: "ntfy"
api_key: "your_ntfy_api_key_here"
base_url: "https://ntfy.sh/your_personal_topic"
default: true # This provider will be used by default if no providers are specified in the CLI
# Another ntfy provider with different configuration
- name: "ntfy_work"
provider_type: "ntfy"
api_key: "your_work_ntfy_api_key_here"
base_url: "https://ntfy.sh/your_work_topic"
# Note: default is false if not specified
# Usage examples:
# 1. Send to all default providers:
# plingding --message "Your message here"
#
# 2. Send to specific providers:
# plingding --providers "pushover_work,ntfy_work" --message "Your message here"
#
# 3. Send with priority and image:
# plingding --providers "pushover_personal" --message "Important message" --priority 2 --image /path/to/image.jpg
# Note: You can add as many providers as you need, and use the same provider type multiple times with different configurations.