Skip to content

Commit

Permalink
Merge pull request #49 from dule1322/CTX-1658
Browse files Browse the repository at this point in the history
CTX-1658: Synchronize config file with newest CLI changes
  • Loading branch information
igorperic17 authored Aug 29, 2023
2 parents 97f6947 + e08f014 commit 75cff3e
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 75cff3e

Please sign in to comment.