Update README with new values

This commit is contained in:
Quentin 2022-11-13 15:50:22 +01:00
parent fc758bb9c0
commit 09ee889587
Signed by: quentin
GPG key ID: E9602264D639FF68

View file

@ -30,7 +30,7 @@ You need at least Python 3.6, pip, and setuptools.
Because the python package is in a subfolder, the command is a bit more complicated than usual: Because the python package is in a subfolder, the command is a bit more complicated than usual:
```bash ```bash
pip3 install --user 'git+https://git.deuxfleurs.fr/quentin/garage-admin-sdk-python' pip3 install --user 'git+https://git.deuxfleurs.fr/garage-sdk/garage-admin-sdk-python'
``` ```
Now, let imagine you have a fresh Garage instance running on localhost, with the admin API configured on port 3903 with the bearer `s3cr3t`: Now, let imagine you have a fresh Garage instance running on localhost, with the admin API configured on port 3903 with the bearer `s3cr3t`:
@ -102,7 +102,7 @@ See also:
Install the SDK with: Install the SDK with:
```bash ```bash
npm install --save git+https://git.deuxfleurs.fr/quentin/garage-admin-sdk-js.git npm install --save git+https://git.deuxfleurs.fr/garage-sdk/garage-admin-sdk-js.git
``` ```
A short example: A short example:
@ -136,7 +136,7 @@ See also:
Install the SDK with: Install the SDK with:
```bash ```bash
go get git.deuxfleurs.fr/quentin/garage-admin-sdk-golang go get git.deuxfleurs.fr/garage-sdk/garage-admin-sdk-golang
``` ```
A short example: A short example:
@ -148,7 +148,7 @@ import (
"context" "context"
"fmt" "fmt"
"os" "os"
garage "git.deuxfleurs.fr/quentin/garage-admin-sdk-golang" garage "git.deuxfleurs.fr/garage-sdk/garage-admin-sdk-golang"
) )
func main() { func main() {