-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathplugins.yml
80 lines (71 loc) · 2.03 KB
/
plugins.yml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
plugins:
- name: mastodon
class: mastodon.mastodon_client
enabled: true
config:
base_url: "https://mstdn.science"
access_token: $MASTODON_ACCESS_TOKEN
max_content_length: 500
- name: bluesky-galaxyproject
class: bluesky.bluesky_client
enabled: true
config:
base_url: "https://bsky.social"
username: "galaxyproject.bsky.social"
password: $BLUESKY_PASSWORD
max_content_length: 300
- name: mastodon-eu-freiburg
class: mastodon.mastodon_client
enabled: true
config:
base_url: "https://xn--baw-joa.social"
access_token: $MASTODON_EU_FR_TOKEN
max_content_length: 500
- name: matrix-eu-announce
class: matrix.matrix_client
enabled: true
config:
base_url: "https://matrix.org"
access_token: $MATRIX_ACCESS_TOKEN
room_id: "!ArjKhGljVCmzqxhauY:matrix.org"
- name: slack
class: slack.slack_client
enabled: false
config:
access_token: $SLACK_ACCESS_TOKEN
channel_id: ""
max_content_length: 40000
- name: linkedin-galaxyproject
class: linkedin.linkedin_client
enabled: true
config:
access_token: $LINKEDIN_ACCESS_TOKEN
org_id: 101662592 # Galaxy Project LinkedIn account
max_content_length: 3000
- name: markdown
class: markdown.markdown_client
enabled: true
config:
save_path: "markdown_cache"
- name: mastodon-brc
class: mastodon.mastodon_client
enabled: true
config:
base_url: "https://mstdn.science"
access_token: $BRC_MASTODON_ACCESS_TOKEN
max_content_length: 500
- name: bluesky-brc
class: bluesky.bluesky_client
enabled: true
config:
base_url: "https://bsky.social"
username: "brcanalytics.bsky.social"
password: $BRC_BLUESKY_PASSWORD
max_content_length: 300
- name: linkedin-brc
class: linkedin.linkedin_client
enabled: true
config:
access_token: $BRC_LINKEDIN_ACCESS_TOKEN
org_id: 104467448 # BRC Analytics LinkedIn account
max_content_length: 3000