Created
November 22, 2021 16:43
-
-
Save hemna/783d04c821cfa07048ff659bbe5e2f5a to your computer and use it in GitHub Desktop.
Sample aprsd.yml to enable the watchlist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aprs: | |
# Set enabled to False if there is no internet connectivity. | |
# This is useful for a direwolf KISS aprs connection only. | |
# Get the passcode for your callsign here: | |
# https://apps.magicbug.co.uk/passcode | |
enabled: true | |
host: rotate.aprs2.net | |
login: CALLSIGN | |
password: '00000' | |
port: 14580 | |
aprsd: | |
dateformat: '%m/%d/%Y %I:%M:%S %p' | |
email: | |
enabled: true | |
imap: | |
debug: false | |
host: imap.gmail.com | |
login: IMAP_USERNAME | |
password: IMAP_PASSWORD | |
port: 993 | |
use_ssl: true | |
shortcuts: | |
aa: [email protected] | |
cl: [email protected] | |
wb: [email protected] | |
smtp: | |
debug: false | |
host: smtp.gmail.com | |
login: SMTP_USERNAME | |
password: SMTP_PASSWORD | |
port: 465 | |
use_ssl: false | |
enabled_plugins: | |
- aprsd.plugins.email.EmailPlugin | |
- aprsd.plugins.fortune.FortunePlugin | |
- aprsd.plugins.location.LocationPlugin | |
- aprsd.plugins.ping.PingPlugin | |
- aprsd.plugins.query.QueryPlugin | |
- aprsd.plugins.stock.StockPlugin | |
- aprsd.plugins.time.TimePlugin | |
- aprsd.plugins.weather.USWeatherPlugin | |
- aprsd.plugins.version.VersionPlugin | |
logfile: /tmp/aprsd.log | |
logformat: '[%(asctime)s] [%(threadName)-20.20s] [%(levelname)-5.5s] %(message)s | |
- [%(pathname)s:%(lineno)d]' | |
rich_logging: false | |
save_location: /Users/i530566/.config/aprsd/ | |
trace: false | |
units: imperial | |
watch_list: | |
alert_callsign: WB4BOR | |
alert_time_seconds: 3600 | |
callsigns: | |
- KM6LYW | |
enabled: true | |
enabled_plugins: | |
- aprsd.plugins.notify.NotifySeenPlugin | |
packet_keep_count: 10 | |
web: | |
enabled: true | |
host: 0.0.0.0 | |
logging_enabled: true | |
port: 8001 | |
users: | |
admin: password-here | |
ham: | |
callsign: NOCALL | |
kiss: | |
serial: | |
baudrate: 9600 | |
device: /dev/ttyS0 | |
enabled: false | |
tcp: | |
enabled: false | |
host: direwolf.ip.address | |
port: '8001' | |
services: | |
aprs.fi: | |
# Get the apiKey from your aprs.fi account here: | |
# http://aprs.fi/account | |
apiKey: APIKEYVALUE | |
avwx: | |
# (Optional for AVWXWeatherPlugin) | |
# Use hosted avwx-api here: https://avwx.rest | |
# or deploy your own from here: | |
# https://github.com/avwx-rest/avwx-api | |
apiKey: APIKEYVALUE | |
base_url: http://host:port | |
opencagedata: | |
# (Optional for TimeOpenCageDataPlugin) | |
# Get the apiKey from your opencagedata account here: | |
# https://opencagedata.com/dashboard#api-keys | |
apiKey: APIKEYVALUE | |
openweathermap: | |
# (Optional for OWMWeatherPlugin) | |
# Get the apiKey from your | |
# openweathermap account here: | |
# https://home.openweathermap.org/api_keys | |
apiKey: APIKEYVALUE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment