Merge branch 'develop' into pydocupdates

This commit is contained in:
Huy Pham 2019-09-13 11:07:43 -07:00
commit 813ddc10c6
11 changed files with 56 additions and 51 deletions

View file

@ -42,6 +42,14 @@ python3 -m pipenv install --dev
export PYTHON=$(python3 -m pipenv --py)
```
### Setup pre-commit
Install pre-commit hooks to help automate running tool checks against code.
```shell
python3 -m pipenv run pre-commit install
```
### Build CORE
```shell
@ -69,6 +77,18 @@ cd $REPO/netns
sudo make install
```
### Adding EMANE to Pipenv
EMANE bindings are not available through pip, you will need to build and install from source.
[Build EMANE](https://github.com/adjacentlink/emane/wiki/Build#general-build-instructions)
```shell
# after building emane above
# ./autogen.sh && ./configure --prefix=/usr && make
python3 -m pipenv install --skip-lock $EMANEREPO/src/python
```
### Running CORE
This will run the core-daemon server using the configuration files within the repo.