-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.example.json
More file actions
43 lines (43 loc) · 1.32 KB
/
config.example.json
File metadata and controls
43 lines (43 loc) · 1.32 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
{
"ICECAST_STREAM_URL_ARRAY": [
"http://icecast.your-stream.com:8000/stream1.mp3",
"http://icecast.your-stream.com:8000/stream2.ogg"
],
"SHARED_STATE_DIR": "/data",
"SHOULD_LOG_ALL_ALERTS": false,
"ALERT_SOUND_ENABLED": true,
"TZ": "America/Chicago",
"PROCESS_CAP_ALERTS": true,
"CAP_ENDPOINTS": [
{
"name": "ENDEC CAP Endpoint",
"url": "https://apps.fema.gov/IPAWSOPEN_EAS_SERVICE/rest/feed"
},
{
"name": "WEA CAP Endpoint",
"url": "https://apps.fema.gov/IPAWSOPEN_EAS_SERVICE/rest/PublicWEA/recent/2012-08-21T11:40:43Z"
},
{
"name": "EAS CAP Endpoint",
"url": "https://apps.fema.gov/IPAWSOPEN_EAS_SERVICE/rest/eas/recent/2019-12-31T11:59:59Z"
}
],
"WATCHED_FIPS": "031055,031153",
"APPRISE_CONFIG_PATH": "/app/apprise.yml",
"EAS_RELAY_NAME": "EASLISTN",
"DASHBOARD_USERNAME": "your_username_here",
"DASHBOARD_PASSWORD": "your_password_here",
"ENABLE_FILTERS": true,
"FILTERS": [
{
"name": "Spammy Event Filter",
"event_codes": ["RWT", "RMT", "DMO"],
"action": "ignore"
},
{
"name": "Default Filter",
"event_codes": ["*"],
"action": "relay"
}
]
}