support | |
---|---|
tests | |
package |
APEX is a next generation APRS based protocol. This repository represents the reference implementation and is a full features application for digipeating across multiple AX.25 KISS TNC devices using the full APEX stack.
For more information on the project please check out the project's home page.
Install the application using pip.
pip install apex-radio
The application is written for python 2 or 3. Once installed copy the apex.conf.example file over to apex.conf in the /etc directory, then edit the file and replace it with your details. Next just run the application with the following command.
apex -v
There isn't much to the application right now, so thats all you should need to run it. Digipeating will occur automatically and respond to the WIDEN-n paradigm as well as your own callsign. Cross-band repeating is enabled right now but only by specifying the call sign directly. The application is still pre-release so more features and configuration options should be added soon.
This is Free software: Apache License v2
Initial setup:
pip install -U pyenv tox pyenv install 2.7 3.3.6 3.4.5 3.5.2 pypy-5.4.1 pyenv global 2.7 3.3.6 3.4.5 3.5.2 pypy-5.4.1
NOTE: The specific versions mentioned above may be different for each platform. use pyenv install --list to view the list of available versions. You will need a version of 2.7.x, 3.3.x, 3.4.x, 3.5.x, and pypy. Try to use the latest available version for each. Also some flavors of pyenv have different formats for it's arguments. So read the pyenv documentation on your platform.
To run all tests:
tox
Note, to combine the coverage data from all the tox environments run:
Windows | set PYTEST_ADDOPTS=--cov-append tox |
---|---|
Other | PYTEST_ADDOPTS=--cov-append tox |