-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
76 lines (66 loc) · 2.06 KB
/
Copy path.env.example
File metadata and controls
76 lines (66 loc) · 2.06 KB
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
# IRC GitWatch environment file.
# Keep the real copy mode 0600. Shell quotes are recommended for IRC channels.
# Required primary project scope. Add optional repositories as a comma-separated
# list; all repositories share the webhook secret and IRC fan-out.
GITHUB_REPO=your-account/your-repository
GITHUB_REPOS=
GITHUB_ACCOUNT=
# Recommended. Never commit real values.
GITHUB_TOKEN=
GITHUB_WEBHOOK_SECRET=
# Persistent state and local HTTP listener.
GITHUB_STATE_FILE=/var/lib/irc-gitwatch/state.json
GITHUB_WEBHOOK_BIND=127.0.0.1
GITHUB_WEBHOOK_PORT=9510
GITHUB_WEBHOOK_PATH=/githubhook
DASHBOARD_PUBLIC_URL=
# Repository event, Actions, Traffic and public-account monitors.
GITHUB_POLL_ENABLED=1
GITHUB_ACTIONS_ENABLED=1
GITHUB_TRAFFIC_ENABLED=1
GITHUB_ACCOUNT_ENABLED=1
# EpiKnet-compatible primary IRC connection. Disabled by default.
EPIKNET_ENABLED=0
IRC_HOST=irc.example.net
IRC_PORT=6697
IRC_CHANNEL='#your-channel'
IRC_NICK=gitwatch
IRC_USER=gitwatch
IRC_REALNAME='IRC GitWatch'
# Libera Chat. Set SASL fields together when LIBERA_REQUIRE_SASL=1.
LIBERA_ENABLED=0
LIBERA_HOST=irc.libera.chat
LIBERA_PORT=6697
LIBERA_CHANNEL='#your-channel'
LIBERA_NICK=gitwatch
LIBERA_USER=gitwatch
LIBERA_REALNAME='IRC GitWatch'
LIBERA_REQUIRE_SASL=1
LIBERA_SASL_ACCOUNT=
LIBERA_SASL_PASSWORD=
# Undernet can use one or two channels over one connection. Leave the
# secondary value empty to disable that optional delivery target.
UNDERNET_ENABLED=0
UNDERNET_HOST=irc.undernet.org
UNDERNET_PORT=6667
UNDERNET_TLS=0
UNDERNET_NICK=gitwatch
UNDERNET_USER=gitwatch
UNDERNET_REALNAME='IRC GitWatch'
UNDERNET_CHANNEL_PRIMARY='#your-channel'
UNDERNET_CHANNEL_PRIMARY_KEY=
UNDERNET_CHANNEL_SECONDARY=
# Optional exact delivery contract. Target ids are shown by --config-check.
# A configured id that is missing makes configuration validation fail closed.
IRC_REQUIRED_TARGETS=
IRC_DELIVERY_SETTLE_MS=1200
IRC_DELIVERY_RETRY_SECONDS=60
# Optional RSS or Atom feed.
RSS_ENABLED=0
RSS_URL=
# Presentation and observability.
IRC_COLORS=1
IRC_ICON_MODE=compat
IRC_STARTUP_ANNOUNCE=1
METRICS_ENABLED=1
OPS_ALERTS_ENABLED=0