Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 711 Bytes

File metadata and controls

24 lines (16 loc) · 711 Bytes

This brief example shows how to build Python extensions for Nexus using the Nexus.Agent for Python.

Run

Start the preconfigured Nexus and Nexus.Agent containers:

podman-compose up -d

# or
docker-compose up -d

Once the containers are running, open the Nexus web UI at http://localhost:5000/ and the Nexus.Agent Swagger UI at http://localhost:8000/docs.

Develop

To develop the Python extension, create a virtual environment and install the dependencies:

python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt