diff --git a/quickstart/.env.Example b/quickstart/.env.Example index 37f2354d..645aad19 100644 --- a/quickstart/.env.Example +++ b/quickstart/.env.Example @@ -2,5 +2,6 @@ # RESTACK_ENGINE_ID= # RESTACK_ENGINE_API_KEY= +# RESTACK_ENGINE_API_ADDRESS= # RESTACK_ENGINE_ADDRESS= # RESTACK_CLOUD_TOKEN= diff --git a/quickstart/src/client.py b/quickstart/src/client.py index 6fbc2318..b71efb06 100644 --- a/quickstart/src/client.py +++ b/quickstart/src/client.py @@ -9,10 +9,12 @@ engine_id = os.getenv("RESTACK_ENGINE_ID") address = os.getenv("RESTACK_ENGINE_ADDRESS") api_key = os.getenv("RESTACK_ENGINE_API_KEY") +api_address = os.getenv("RESTACK_ENGINE_API_ADDRESS") connection_options = CloudConnectionOptions( engine_id=engine_id, address=address, api_key=api_key, + api_address=api_address ) client = Restack(connection_options) \ No newline at end of file