mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2025-10-27 08:49:27 +00:00
Instantiate but disable providers. Closes #16
This commit is contained in:
@@ -7,31 +7,60 @@
|
||||
server-owner-callsign: "N0CALL"
|
||||
|
||||
# Data providers to use. This is an example set, tailor it to your liking by commenting and uncommenting.
|
||||
# RBN is supported but has such a high data rate, you probably don't want it enabled.
|
||||
# APRS-IS support is not yet implemented.
|
||||
# RBN and APRS-IS are supported but have such a high data rate, you probably don't want them enabled.
|
||||
# Each provider needs a type, a name, and an enabled/disabled state. Some require more config such as hostnames/IP
|
||||
# addresses and ports. You can duplicate them if you like, e.g. to support several DX clusters. RBN uses two ports, 7000
|
||||
# for CW/RTTY and 7001 for FT8, so if you want both, you need two entries, as shown below.
|
||||
# Feel free to write your own provider classes!
|
||||
providers:
|
||||
# Some providers don't require any config:
|
||||
- type: "POTA"
|
||||
- type: "SOTA"
|
||||
- type: "WWFF"
|
||||
- type: "WWBOTA"
|
||||
- type: "GMA"
|
||||
- type: "HEMA"
|
||||
- type: "ParksNPeaks"
|
||||
# - type: "APRS-IS"
|
||||
# Some, like DX Clusters, require extra config. You can add multiple DX clusters if you want!
|
||||
-
|
||||
type: "POTA"
|
||||
name: "POTA"
|
||||
enabled: true
|
||||
-
|
||||
type: "SOTA"
|
||||
name: "SOTA"
|
||||
enabled: true
|
||||
-
|
||||
type: "WWFF"
|
||||
name: "WWFF"
|
||||
enabled: true
|
||||
-
|
||||
type: "WWBOTA"
|
||||
name: "WWBOTA"
|
||||
enabled: true
|
||||
-
|
||||
type: "GMA"
|
||||
name: "GMA"
|
||||
enabled: true
|
||||
-
|
||||
type: "HEMA"
|
||||
name: "HEMA"
|
||||
enabled: true
|
||||
-
|
||||
type: "ParksNPeaks"
|
||||
name: "ParksNPeaks"
|
||||
enabled: true
|
||||
-
|
||||
type: "APRS-IS"
|
||||
name: "APRS-IS"
|
||||
enabled: false
|
||||
-
|
||||
type: "DXCluster"
|
||||
name: "HRD Dx Cluster"
|
||||
enabled: true
|
||||
host: "hrd.wa9pie.net"
|
||||
port: 8000
|
||||
# RBN uses two ports, 7000 for CW/RTTY and 7001 for FT8, so if you want both, you need to add two entries:
|
||||
# -
|
||||
# type: "RBN"
|
||||
# port: 7000
|
||||
# -
|
||||
# type: "RBN"
|
||||
# port: 7001
|
||||
-
|
||||
type: "RBN"
|
||||
name: "RBN CW/RTTY"
|
||||
enabled: false
|
||||
port: 7000
|
||||
-
|
||||
type: "RBN"
|
||||
name: "RBN FT8"
|
||||
enabled: false
|
||||
port: 7001
|
||||
|
||||
# Port to open the local web server on
|
||||
web-server-port: 8080
|
||||
|
||||
Reference in New Issue
Block a user