diff --git a/caimira/docs/mkdocs/docs/code/rest_api.md b/caimira/docs/mkdocs/docs/code/rest_api.md index e24425bc..929a9ed0 100644 --- a/caimira/docs/mkdocs/docs/code/rest_api.md +++ b/caimira/docs/mkdocs/docs/code/rest_api.md @@ -54,11 +54,7 @@ To run the API, follow these steps from the root directory of the project: - From [PyPI](https://pypi.org/project/caimira/): - pip install --index-url https://test.pypi.org/simple --extra-index-url https://pypi.org/simple caimira - - !!! info - `--extra-index-url` is necessary to resolve dependencies from PyPI. - + pip install caimira 2. Run the backend: @@ -207,4 +203,13 @@ As the project is growing, more endpoints targeted to specific tasks will be dev "room_capacity": "10", "room_volume": "60", "total_people": "2" - }' \ No newline at end of file + }' + +#### Development + +For testing new releases, use the PyPI Test instance by running the following command (directory independent): + + pip install --index-url https://test.pypi.org/simple --extra-index-url https://pypi.org/simple caimira + +!!! info + `--extra-index-url` is necessary to resolve dependencies from PyPI. diff --git a/caimira/docs/mkdocs/docs/root/installation.md b/caimira/docs/mkdocs/docs/root/installation.md index 98169772..2bdc7ef9 100644 --- a/caimira/docs/mkdocs/docs/root/installation.md +++ b/caimira/docs/mkdocs/docs/root/installation.md @@ -257,13 +257,6 @@ CAiMIRA's backend logic can be installed with the following two options: pip install caimira - For testing new releases, use the PyPI Test instance by running the following command (directory independent): - - pip install --index-url https://test.pypi.org/simple --extra-index-url https://pypi.org/simple caimira - - !!! info - `--extra-index-url` is necessary to resolve dependencies from PyPI. - 2. **From the [GitLab Repository](https://gitlab.cern.ch/caimira/caimira)1**: Clone the repository and install it in editable mode for development by running the following commands: