forked from kristjank/Noah
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.noah.example
More file actions
129 lines (102 loc) · 4.82 KB
/
Copy path.noah.example
File metadata and controls
129 lines (102 loc) · 4.82 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#!/usr/bin/env bash
# ---------------------------------------------------------------------------
# This file is part of noah.
#
# (c) Brian Faust <hello@brianfaust.me>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
# ---------------------------------------------------------------------------
# -------------------------
# Monitor
# -------------------------
monitor_lines=10 # number of lines to monitor...
monitor_rebuild=120 # time to wait after a rebuild in seconds...
monitor_interval=1 # time to wait after a log check in seconds...
# -------------------------
# [Notifications] Driver
# -------------------------
# example would be notification_drivers=(log slack pushover)
notification_drivers=(log) # notification methods...
# values: none, log, email, mailgun,
# slack, nexmo, pushover, pushbullet
# -------------------------
# [Notifications] Log
# -------------------------
notification_log=${noah_dir}/noah.log # log file...
# -------------------------
# [Notifications] E-Mail
# -------------------------
notification_email_to='' # e-mail recipient...
notification_email_subject='noah' # e-mail subject...
# -------------------------
# [Notifications] Slack
# -------------------------
notification_slack_webhook='' # slack incoming webhook...
notification_slack_channel='' # slack channel (@username or #channel)...
notification_slack_from='noah' # slack author...
notification_slack_emoji='boat' # slack icon...
# -------------------------
# [Notifications] Nexmo
# -------------------------
notification_nexmo_from='noah' # sms author...
notification_nexmo_to='' # recipient phone number...
notification_nexmo_api_key='' # nexmo api key...
notification_nexmo_api_secret='' # nexmo api ...
# -------------------------
# [Notifications] Pushover
# -------------------------
notification_pushover_token='' # pushover api token...
notification_pushover_user='' # pushover user key...
notification_pushover_title='noah' # push notification title...
# -------------------------
# [Notifications] Pushbullet
# -------------------------
notification_pushbullet_access_token='' # pushbullet access token...
notification_pushbullet_title='noah' # push notification title...
# -------------------------
# [Notifications] Mailgun
# -------------------------
notifications_mailgun_api_key='' # mailgun api key...
notifications_mailgun_domain='' # mailgun domain...
notifications_mailgun_from='noah' # sender name...
notifications_mailgun_to='' # recipient e-mail...
notifications_mailgun_subject='noah' # e-mail subject
# -------------------------
# Night Mode
# -------------------------
night_mode_enabled=false # enable or disable night mode...
night_mode_start=22 # when the night begins...
night_mode_end=8 # when the day begins...
# -------------------------
# Relay
# -------------------------
relay_enabled=false # use relay instead of rebuild only...
relay_user='' # ssh user...
relay_ip='' # ssh ip address...
relay_port=22 # ssh port address...
relay_secret='' # delegate secret...
# -------------------------
# Snapshots
# -------------------------
snapshot_mainnet=(
'http://ark.delegate-goose.biz/snapshot/current'
'http://arkdel.net/current'
'http://s.arkmoon.com/current'
'http://s.arkx.io/current'
'https://dafty.net/snapshot1/current'
'https://dafty.net/snapshot2/current'
'https://dafty.net/snapshot3/current'
'https://dafty.net/snapshot4/current'
'https://dafty.net/snapshot5/current'
'https://dafty.net/snapshot6/current'
'https://s.arkno.de/current'
'https://snapshot.arkcoin.net/current'
'https://snapshots.ark.io/current'
'https://www.arkdelegate.com/current'
)
snapshot_devnet=(
'https://dsnapshots.ark.io/current'
'https://dsnapshot.arkno.de/current'
'http://dexplorer.ark.land/snapshots/current'
)