Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 1.19 KB

README.md

File metadata and controls

13 lines (9 loc) · 1.19 KB

RRS Agents example

Code containing examples using the sixg_radio_mgmt repo.

Cloning

Remember to clone submodules using git clone --recurse-submodules [email protected]:lasseufpa/sixg_scheduling_example.git

Install

  • Install pipenv
  • Install dependencies using pipenv: pipenv install
  • To access the virtual environment created, run pipenv shell, now all commands which you run will be performed into virtual enviroment created
  • (In case you want to contribute with this repo, if not you can skip this step) Activate pre-commit hooks to use black formatter, flake8 lint, Isort references and Pyright type check. Run pre-commit install. Now every time you make a commit, black formatter, flake8, isort and pyrights will make tests to verify if your code is following the patterns (you can adapt your IDE or text editor to follow this patterns, e.g. vs code).