Documentation for RAN Tester UE, a 5G security analysis tool.
Tip
This documentation supports both .rst and .md files.
- Clone the repository and navigate into it:
git clone https://github.com/oran-testing/docs.git
cd docs/- Create and activate a Python virtual environment:
python3 -m venv .env
source .env/bin/activate- Install the required dependencies:
pip install -r requirements.txtFor convenience, run the live-reload Sphinx server, which will show live updates as you edit the docs files:
sphinx-autobuild . _build/html/Then, open http://127.0.0.1:8000/ in your browser to see live updates.
After finishing your work, deactivate the virtual environment by running:
deactivate