updated devguide to note using install.sh and clear up needing to maintain duplicate content
This commit is contained in:
parent
81382f2899
commit
eb030aaca7
1 changed files with 25 additions and 66 deletions
|
@ -19,84 +19,43 @@ Current development focuses on the Python modules and daemon. Here is a brief de
|
||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
||||||
Overview for setting up the pipenv environment, building core, installing the GUI and netns, then running
|
To setup CORE for develop we will leverage to automated install script.
|
||||||
the core-daemon for development based on Ubuntu 18.04.
|
|
||||||
|
|
||||||
### Install Dependencies
|
|
||||||
|
|
||||||
```shell
|
## Clone CORE Repo
|
||||||
sudo apt install -y automake pkg-config gcc libev-dev ebtables gawk \
|
|
||||||
python3.6 python3.6-dev python3-pip python3-tk tk libtk-img ethtool libtool libreadline-dev autoconf
|
|
||||||
```
|
|
||||||
|
|
||||||
### Install OSPF MDR
|
|
||||||
|
|
||||||
```shell
|
|
||||||
cd ~/Documents
|
|
||||||
git clone https://github.com/USNavalResearchLaboratory/ospf-mdr
|
|
||||||
cd ospf-mdr
|
|
||||||
./bootstrap.sh
|
|
||||||
./configure --disable-doc --enable-user=root --enable-group=root --with-cflags=-ggdb \
|
|
||||||
--sysconfdir=/usr/local/etc/quagga --enable-vtysh \
|
|
||||||
--localstatedir=/var/run/quagga
|
|
||||||
make
|
|
||||||
sudo make install
|
|
||||||
```
|
|
||||||
|
|
||||||
### Clone CORE Repo
|
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
cd ~/Documents
|
cd ~/Documents
|
||||||
git clone https://github.com/coreemu/core.git
|
git clone https://github.com/coreemu/core.git
|
||||||
cd core
|
cd core
|
||||||
|
git checkout develop
|
||||||
```
|
```
|
||||||
|
|
||||||
### Build CORE
|
## Install the Development Environment
|
||||||
|
|
||||||
|
This command will automatically install system dependencies, clone and build OSPF-MDR,
|
||||||
|
build CORE, setup the CORE pipenv environment, and install pre-commit hooks.
|
||||||
|
|
||||||
|
This script is currently compatible with Ubuntu and CentOS, tested on Ubuntu 18.04 and
|
||||||
|
CentOS 7.6. The script also currently defaults to using python3.6, but a different
|
||||||
|
version of python can be targeted if python3.6 is not available on your system.
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
./bootstrap.sh
|
# default dev install using python3.6
|
||||||
./configure
|
./install.sh -d
|
||||||
make -j8
|
|
||||||
|
# providing a newer python version for ubuntu
|
||||||
|
./install.sh -d -v 3.7
|
||||||
|
|
||||||
|
# providing a newer python version for centos
|
||||||
|
./install.sh -d -v 37
|
||||||
```
|
```
|
||||||
|
|
||||||
### Install netns and GUI
|
### pre-commit
|
||||||
|
|
||||||
Install legacy GUI if desired and mandatory netns executables.
|
pre-commit hooks help automate running tools to check modified code. Every time a commit is made
|
||||||
|
python utilities will be ran to check validity of code, potentially failing and backing out the commit.
|
||||||
```shell
|
These changes are currently mandated as part of the current CI, so add the changes and commit again.
|
||||||
# install GUI
|
|
||||||
cd $REPO/gui
|
|
||||||
sudo make install
|
|
||||||
|
|
||||||
# install netns scripts
|
|
||||||
cd $REPO/netns
|
|
||||||
sudo make install
|
|
||||||
```
|
|
||||||
|
|
||||||
### Setup Python Environment
|
|
||||||
|
|
||||||
To leverage the dev environment you need python 3.6+.
|
|
||||||
|
|
||||||
```shell
|
|
||||||
# change to daemon directory
|
|
||||||
cd $REPO/daemon
|
|
||||||
|
|
||||||
# install pipenv
|
|
||||||
sudo python3 -m pip install pipenv
|
|
||||||
|
|
||||||
# setup a virtual environment and install all required development dependencies
|
|
||||||
python3 -m pipenv install --dev
|
|
||||||
```
|
|
||||||
|
|
||||||
### Setup pre-commit
|
|
||||||
|
|
||||||
Install pre-commit hooks to help automate running tool checks against code. Once installed every time a commit is made
|
|
||||||
python utilities will be ran to check validity of code, potentially failing and backing out the commit. This allows
|
|
||||||
one to review changes being made by tools ro the fix the issue noted. Then add the changes and commit again.
|
|
||||||
|
|
||||||
```shell
|
|
||||||
python3 -m pipenv run pre-commit install
|
|
||||||
```
|
|
||||||
|
|
||||||
### Adding EMANE to Pipenv
|
### Adding EMANE to Pipenv
|
||||||
|
|
||||||
|
@ -121,9 +80,9 @@ make -j8
|
||||||
python3 -m pipenv pip install $EMANEREPO/src/python
|
python3 -m pipenv pip install $EMANEREPO/src/python
|
||||||
```
|
```
|
||||||
|
|
||||||
### Running CORE
|
## Running CORE
|
||||||
|
|
||||||
This will run the core-daemon server using the configuration files within the repo.
|
Commands below can be used to run the core-daemon, the new core gui, and tests.
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
# runs for daemon
|
# runs for daemon
|
||||||
|
|
Loading…
Add table
Reference in a new issue