
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>
22 lines
545 B
ReStructuredText
22 lines
545 B
ReStructuredText
.. _running-in-development:
|
|
|
|
==================================
|
|
Running Kolla Build in development
|
|
==================================
|
|
|
|
The recommended way to run in development
|
|
-----------------------------------------
|
|
|
|
To clone the repository and install the package
|
|
in development mode, run the following commands:
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
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 ...
|