1
0
mirror of https://github.com/craigerl/aprsd.git synced 2024-09-17 02:36:42 -04:00
aprsd/INSTALL.txt
Hemna cc8fd178ce Added aprsd-dev plugin test cli and WxPlugin
This patch adds a new CLI app called aprsd-dev.  arpsd-dev is
used specifically for developing plugins.  It allows you to run a
plugin directly without the need to run aprsd server.

This patch also adds the Weather Metar plugin called WxPlugin.
You can use it to fetch METAR from the nearest station for a callsign
or from a known METAR station id.  Call WxPlugin with a message of
'wx' for closest metar station or 'wx KAUN' for metar at KAUN wx station
2021-01-15 22:30:34 -05:00

25 lines
426 B
Plaintext

# installation instructions for the short-attention-span user like me
mkdir -p ~/.aprsd
cd ~
virtualenv .venv_aprsd
cd .venv_aprsd/
source ./bin/activate
mkdir ~/aprsd2
cd ~/aprsd2
git clone https://github.com/craigerl/aprsd.git
cd aprsd
pip install -e .
cd ~/.venv_aprsd/bin
./aprsd sample-config # generates a config.yml template
vi ~/.config/aprsd/config.yml # copy/edit config here
./aprsd server
# profit! #