diff --git a/cli/app/commands/install/run.py b/cli/app/commands/install/run.py index b47e2e523..c70eabeba 100644 --- a/cli/app/commands/install/run.py +++ b/cli/app/commands/install/run.py @@ -461,7 +461,7 @@ def _update_environment_variables(self, env_values: dict) -> dict: "SUPERTOKENS_API_KEY": "NixopusSuperTokensAPIKey", "SUPERTOKENS_API_DOMAIN": f"{protocol}://{api_host}/api", "SUPERTOKENS_WEBSITE_DOMAIN": f"{protocol}://{view_host}", - "SUPERTOKENS_CONNECTION_URI": f"{protocol}://{api_host}:{supertokens_api_port}", + "SUPERTOKENS_CONNECTION_URI": f"{protocol}://{api_host}:{supertokens_api_port}".replace("https", "http"), } for key, value in key_map.items(): diff --git a/cli/pyproject.toml b/cli/pyproject.toml index 192adc963..83df5556c 100644 --- a/cli/pyproject.toml +++ b/cli/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nixopus" -version = "0.1.8" +version = "0.1.9" description = "A CLI for Nixopus" authors = ["Nixopus "] readme = "README.md" diff --git a/docker-compose.yml b/docker-compose.yml index 2fd8662e9..b380e32f9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -52,7 +52,7 @@ services: args: - NEXT_PUBLIC_PORT=${NEXT_PUBLIC_PORT} - NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL} - - NEXT_PUBLIC_WEBSITE_DOMAIN=${NEXT_PUBLIC_WEBSITE_DOMAIN} + - NEXT_PUBLIC_WEBSITE_DOMAIN=${NEXT_PUBLIC_WEBSITE_DOMAIN} ports: - "${NEXT_PUBLIC_PORT:-7443}:${NEXT_PUBLIC_PORT:-7443}" restart: unless-stopped