Skip to content

Commit

Permalink
CTX-1658: Synchronize config file with newest CLI changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dule1322 committed Aug 29, 2023
1 parent 97f6947 commit e08f014
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions coretex/_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,6 @@ def getEnvVar(key: str, default: str) -> str:
"refreshToken": None,
"serverUrl": getEnvVar("CTX_API_URL", "https://devext.biomechservices.com:29007/"),
"storagePath": getEnvVar("CTX_STORAGE_PATH", "~/.coretex"),

# Configuration related to Coretex.ai Node
"nodeName": getEnvVar("CTX_NODE_NAME", ""),
"organizationID": getEnvVar("CTX_ORGANIZATION_ID", ""),
"image": None
}


Expand Down Expand Up @@ -88,5 +83,3 @@ def _syncConfigWithEnv() -> None:

os.environ["CTX_API_URL"] = config["serverUrl"]
os.environ["CTX_STORAGE_PATH"] = config["storagePath"]
os.environ["CTX_NODE_NAME"] = config["nodeName"]
os.environ["CTX_ORGANIZATION_ID"] = config["organizationID"]

0 comments on commit e08f014

Please sign in to comment.