We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2120b27 commit 605ad3bCopy full SHA for 605ad3b
superannotate/__main__.py
@@ -36,7 +36,15 @@ def ask_token():
36
json.dump(existing_config, open(config_file, "w"), indent=4)
37
logger.info("Configuration file %s successfully updated.", config_file)
38
else:
39
- json.dump({"token": token}, open(config_file, "w"), indent=4)
+ json.dump(
40
+ {
41
+ "token": token,
42
+ "main_endpoint": "https://api.annotate.online",
43
+ "ssl_verify": True
44
+ },
45
+ open(config_file, "w"),
46
+ indent=4
47
+ )
48
logger.info("Configuration file %s successfully created.", config_file)
49
50
0 commit comments