Skip to content

Intent Layer

Mario Teixeira Lemes edited this page Jan 3, 2024 · 7 revisions

Architecture

Intent layer components workflow

Features description

All features are described here.

Installing

1) Install python3-venv, git and qttools:

sudo apt install python3-venv -y
sudo apt install git -y
sudo apt install qttools5-dev-tools -y

2) Clone the repository:

cd ~ && git clone https://github.com/mariotlemes/intent_layer.git

3) Export the IP_ADDRESS_OSM OS environment

export IP_ADDRESS_OSM="A.B.C.D"

Note: A.B.C.D represents the IPv4 address for OSM (OpenSource Mano).

4) Create venv and install requirements.txt:

cd ~/intent_layer
python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip3 install -r requirements.txt

Running

python3 ~/intent_layer/src/main.py

Clone this wiki locally