kolla/doc/source/contributor/running-in-development.rst
Sven Kieske bdf5dae433
[docs] remove not working dev setup
also add the command to clone the repository
and use the pip-install `--editable` option in
it's long form so it's immediately clear what it does.

Change-Id: I00403f967c06af6d8c718ed1245aaa01f1218add
Signed-off-by: Sven Kieske <kieske@osism.tech>
2024-06-21 10:45:33 +02:00

545 B

Running Kolla Build in development

To clone the repository and install the package in development mode, run the following commands:

git clone https://opendev.org/openstack/kolla.git
cd kolla
python3 -m venv ~/path/to/venv
source ~/path/to/venv/bin/activate
python3 -m pip install --editable .
kolla-build ...