diff --git a/README.md b/README.md index 1ad0aa9..d60b8b8 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/linea-it/pzserver/build-documentation.yml?label=docs) ![GitHub](https://img.shields.io/github/license/linea-it/pzserver) -A Python library to access data and services from the LSST [Photo-z Server](https://pz-server-dev.linea.org.br/). +A Python library to access data and services from the LSST [Photo-z Server](https://pz-server.linea.org.br/). The Photo-z (PZ) Server is an online service based on software developed and delivered as part of the in-kind contribution program BRA-LIN, from LIneA to the Legacy Survey of Space and Time (LSST) caried out by the [Rubin Observatory](https://rubinobservatory.org/). The PZ Server is an open source project. The source code is available on the GitHub repository [linea-it/pzserver_app](https://github.com/linea-it/pzserver_app). @@ -45,12 +45,12 @@ Step-by-step procedure to test a new feature or bug fix from a particular branch 3. Create a new Conda environment free from `pzserver` old version installation. Delete any existing one with the same same, if necessary. ``` - conda remove --name pzserver-dev --all - conda create -n pzserver-dev python=3.12 - conda activate pzserver-dev + conda remove --name pzserver --all + conda create -n pzserver python=3.12 + conda activate pzserver conda install pip python -m pip install -e '.[dev]' - python -m ipykernel install --user --name pzserver-dev --display-name "Python (pzserver-dev)" + python -m ipykernel install --user --name pzserver --display-name "Python (pzserver)" ```

@@ -59,8 +59,7 @@ Step-by-step procedure to test a new feature or bug fix from a particular branch ``` from pzserver import PzServer token = "****" # your toker - host = "pz-dev" # or "localhost" if testing pipeline back-end locally - pz = PzServer(token, host) + pz = PzServer(token) ``` ---