From 0f068707ceb363f7a60582fe7b87adf197fb9818 Mon Sep 17 00:00:00 2001 From: Viktor Vorobev <vorobev@in.tum.de> Date: Tue, 2 May 2023 10:24:31 +0000 Subject: [PATCH] [NRRPLT-8863] Change production URL to https --- hbp_nrp_virtual_coach/doc/source/tutorials/launching_exp.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hbp_nrp_virtual_coach/doc/source/tutorials/launching_exp.rst b/hbp_nrp_virtual_coach/doc/source/tutorials/launching_exp.rst index 673d2f6..349f9ad 100644 --- a/hbp_nrp_virtual_coach/doc/source/tutorials/launching_exp.rst +++ b/hbp_nrp_virtual_coach/doc/source/tutorials/launching_exp.rst @@ -69,11 +69,11 @@ The first thing we need to do is to import the Virtual Coach and create a Virtua from pynrp.virtual_coach import VirtualCoach vc = VirtualCoach(environment='http://localhost:9000', storage_username='nrpuser', storage_password='password') -Here we chose the local machine as the NRP server. The Virtual Coach can connect to NRP servers running in other locations by setting the *environment* parameter to the proper URL. For example, it is possible to connect to the NRP server running at *http://148.187.149.212* by executing this command: +Here we chose the local machine as the NRP server. The Virtual Coach can connect to NRP servers running in other locations by setting the *environment* parameter to the proper URL. For example, it is possible to connect to the NRP server running at *https://nrp-legacy.neurorobotics.ebrains.eu* by executing this command: .. code-block:: python - vc = VirtualCoach('http://148.187.149.212', oidc_username='<your-hbp-username>', oidc_password='<your-hbp-password>') + vc = VirtualCoach('https://nrp-legacy.neurorobotics.ebrains.eu', oidc_username='<your-hbp-username>', oidc_password='<your-hbp-password>') Notice that parameters *storage_username* and *storage_password* are replaced with *oidc_username* and *oidc_password*. The latter must be used when EBRAINS :term:`OIDC` authentication is required, the former are used otherwise. -- GitLab