mirror of
https://github.com/craigerl/aprsd.git
synced 2024-11-03 15:31:16 -05:00
Hemna
75f610d971
This patch adds pre-commit hook support to ensure code passes basic checks prior to allowing a commit.
25 lines
387 B
Plaintext
25 lines
387 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 # generates a config.yml template on first run
|
|
|
|
vi ~/.aprsd/config.yml
|
|
|
|
./bin/aprsd
|
|
|
|
# profit! #
|