From 112863f59f4f7e8b136485eaeb35328ac78233da Mon Sep 17 00:00:00 2001 From: LawyZheng Date: Fri, 22 Mar 2024 12:01:12 +0800 Subject: [PATCH] fix wrong host in setup (#110) --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index e786bbd7..df8a942a 100755 --- a/setup.sh +++ b/setup.sh @@ -250,7 +250,7 @@ create_organization() { fi # Update the secrets-open-source.toml file - echo -e "[skyvern]\nconfigs = [\n {\"env\" = \"local\", \"host\" = \"http://0.0.0.0:8000/api/v1\", \"orgs\" = [{name=\"Skyvern\", cred=\"$api_token\"}]}\n]" > .streamlit/secrets.toml + echo -e "[skyvern]\nconfigs = [\n {\"env\" = \"local\", \"host\" = \"http://127.0.0.1:8000/api/v1\", \"orgs\" = [{name=\"Skyvern\", cred=\"$api_token\"}]}\n]" > .streamlit/secrets.toml echo ".streamlit/secrets.toml file updated with organization details." }