From 0746f21d4c22d049673492cf0e9571afcc185285 Mon Sep 17 00:00:00 2001 From: Karol Konkol Date: Wed, 19 Jun 2024 15:50:04 +0200 Subject: [PATCH] Rename membrane-clound -> fishjam-cloud --- .gitmodules | 2 +- README.md | 8 ++++---- docker-compose-test.yaml | 2 +- poetry_scripts.py | 2 +- pyproject.toml | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitmodules b/.gitmodules index bfda692..e34e15c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "protos"] path = protos - url = https://github.com/membrane-cloud/protos.git + url = https://github.com/fishjam-cloud/protos.git diff --git a/README.md b/README.md index 639a3ba..2bd4cd6 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # Fishjam Python Server SDK -[![CircleCI](https://dl.circleci.com/status-badge/img/gh/membrane-cloud/python-server-sdk/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/membrane-cloud/python-server-sdk/tree/main) +[![CircleCI](https://dl.circleci.com/status-badge/img/gh/fishjam-cloud/python-server-sdk/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/fishjam-cloud/python-server-sdk/tree/main) -Python server SDK for the [Fishjam Media Server](https://github.com/membrane-cloud/fishjam). +Python server SDK for the [Fishjam Media Server](https://github.com/fishjam-cloud/fishjam). -Read the docs [here](https://membrane-cloud.github.io/python-server-sdk) +Read the docs [here](https://fishjam-cloud.github.io/python-server-sdk) ## Installation @@ -55,7 +55,7 @@ All methods in `RoomApi` may raise one of the exceptions deriving from `fishjam. Notifier allows for receiving real-time updates from the Fishjam Server. -You can read more about notifications in the [Fishjam Docs](https://membrane-cloud.github.io/fishjam-docs/next/getting_started/notifications). +You can read more about notifications in the [Fishjam Docs](https://fishjam-cloud.github.io/fishjam-docs/next/getting_started/notifications). Create `Notifier` instance ```python diff --git a/docker-compose-test.yaml b/docker-compose-test.yaml index 7869601..50579d2 100644 --- a/docker-compose-test.yaml +++ b/docker-compose-test.yaml @@ -1,6 +1,6 @@ services: fishjam: - image: "ghcr.io/fishjam-dev/fishjam:${TAG:-edge}" + image: "ghcr.io/fishjam-cloud/fishjam:${TAG:-edge}" container_name: fishjam restart: on-failure healthcheck: diff --git a/poetry_scripts.py b/poetry_scripts.py index a7b592e..aa2479f 100644 --- a/poetry_scripts.py +++ b/poetry_scripts.py @@ -89,7 +89,7 @@ def generate_docs(): def update_client(): check_exit_code( "openapi-python-client update\ - --url https://raw.githubusercontent.com/membrane-cloud/" + --url https://raw.githubusercontent.com/fishjam-cloud/" "fishjam/main/openapi.yaml \ --config openapi-python-client-config.yaml \ --custom-template-path=templates/openapi" diff --git a/pyproject.toml b/pyproject.toml index aa7087e..5decda7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,8 +3,8 @@ name = "fishjam-server-sdk" version = "0.5.0" description = "Python server SDK for the Fishjam media server" authors = ["Fishjam Team"] -homepage = "https://github.com/membrane-cloud/python-server-sdk" -documentation = "https://membrane-cloud.github.io/python-server-sdk/fishjam" +homepage = "https://github.com/fishjam-cloud/python-server-sdk" +documentation = "https://fishjam-cloud.github.io/python-server-sdk/fishjam" license = "Apache-2.0" readme = "README.md" packages = [{ include = "fishjam" }]