mirror of
https://github.com/craigerl/aprsd.git
synced 2024-11-15 21:01:47 -05:00
make sample config easier to interpret
This commit is contained in:
parent
42b2e227e1
commit
e11a84bf05
@ -13,13 +13,13 @@ import yaml
|
|||||||
|
|
||||||
# an example of what should be in the ~/.aprsd/config.yml
|
# an example of what should be in the ~/.aprsd/config.yml
|
||||||
DEFAULT_CONFIG_DICT = {
|
DEFAULT_CONFIG_DICT = {
|
||||||
"ham": {"callsign": "KFART"},
|
"ham": {"callsign": "CALLSIGN"},
|
||||||
"aprs": {
|
"aprs": {
|
||||||
"login": "someusername",
|
"login": "CALLSIGN",
|
||||||
"password": "somepassword",
|
"password": "00000",
|
||||||
"host": "rotate.aprs.net",
|
"host": "rotate.aprs.net",
|
||||||
"port": 14580,
|
"port": 14580,
|
||||||
"logfile": "/tmp/arsd.log",
|
"logfile": "/tmp/aprsd.log",
|
||||||
},
|
},
|
||||||
"aprs.fi": {"apiKey": "set me"},
|
"aprs.fi": {"apiKey": "set me"},
|
||||||
"shortcuts": {
|
"shortcuts": {
|
||||||
@ -28,15 +28,15 @@ DEFAULT_CONFIG_DICT = {
|
|||||||
"wb": "555309@vtext.com",
|
"wb": "555309@vtext.com",
|
||||||
},
|
},
|
||||||
"smtp": {
|
"smtp": {
|
||||||
"login": "something",
|
"login": "SMTP_USERNAME",
|
||||||
"password": "some lame password",
|
"password": "SMTP_PASSWORD",
|
||||||
"host": "imap.gmail.com",
|
"host": "smtp.gmail.com",
|
||||||
"port": 465,
|
"port": 465,
|
||||||
"use_ssl": False,
|
"use_ssl": False,
|
||||||
},
|
},
|
||||||
"imap": {
|
"imap": {
|
||||||
"login": "imapuser",
|
"login": "IMAP_USERNAME",
|
||||||
"password": "something here too",
|
"password": "IMAP_PASSWORD",
|
||||||
"host": "imap.gmail.com",
|
"host": "imap.gmail.com",
|
||||||
"port": 993,
|
"port": 993,
|
||||||
"use_ssl": True,
|
"use_ssl": True,
|
||||||
|
Loading…
Reference in New Issue
Block a user