forked from dicomgrid/sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.secrets.toml
More file actions
44 lines (37 loc) · 1.26 KB
/
example.secrets.toml
File metadata and controls
44 lines (37 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
dynaconf_merge = true
[default]
testing = false
# List of cluster storages.
# If this param is setted, for all cluster name we bind
# test account with specific storage.
#
# There is not binding for storage_name == 'DEFULT'.
# Example:
# cluster_storage_names = ['DEFAULT', 'Default cluster', 'Google Cloud Storage', 'S3 Cloud Storage', 'Azure Blob Storage']
[default.api]
storage_http_protocol = 'https'
storage_port = '443'
ws_timeout = 2
upload_study_timeout = 200
merge_timeout = 100
# Service delete method is async method (specially for some
# storages). In our tests we create-delete account many times.
# Account deleteiun timeout is timeout for waiting deleting of
# account.
account_deletion_timeout = 10
# Deletion check interval is interval for checks existing of
# account.
account_deletion_check_interval = 2
[testing]
testing = true
test_account_name = 'PYTHON_SDK_TEST_ACCOUNT'
async_test_account_name = 'ASYNC_PYTHON_SDK_TEST_ACCOUNT'
[testing.api]
url = "https://local.ambrahealth.dev/api/v3"
username = 'username'
password = 'password'
[development]
[development.api]
url = "https://local.ambrahealth.dev/api/v3"
username = 'username'
password = 'password'