File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 0.3.0a1]
9
+
10
+ # Changed
11
+
12
+ * Default Unbox server URL (< https://api-staging.unbox.ai/ > ).
13
+
8
14
## [ 0.3.0a0]
9
15
10
16
# Added
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ class DeploymentType(Enum):
63
63
64
64
65
65
# NOTE: Don't modify this unless you are deploying on-prem.
66
- DEPLOYMENT = DeploymentType .ONPREM
66
+ DEPLOYMENT = DeploymentType .AWS
67
67
68
68
69
69
class UnboxClient (object ):
Original file line number Diff line number Diff line change 10
10
from .exceptions import ExceptionMap , UnboxException
11
11
from .version import __version__
12
12
13
- # UNBOX_ENDPOINT = "https://api-staging.unbox.ai/api "
14
- # UNBOX_ENDPOINT = "https://api.unbox.ai/api "
15
- UNBOX_ENDPOINT = "http://localhost:8080/v1"
13
+ UNBOX_ENDPOINT = "https://api-staging.unbox.ai/v1 "
14
+ # UNBOX_ENDPOINT = "https://api.unbox.ai/v1 "
15
+ # UNBOX_ENDPOINT = "http://localhost:8080/v1"
16
16
UNBOX_STORAGE_PATH = os .path .expanduser ("~/unbox/unbox-onpremise/userStorage" )
17
17
18
18
You can’t perform that action at this time.
0 commit comments