Skip to content

Commit 7b55907

Browse files
committed
Change default endpoint to api-staging.unbox.ai
1 parent 91a6171 commit 7b55907

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.0a1]
9+
10+
# Changed
11+
12+
* Default Unbox server URL (<https://api-staging.unbox.ai/>).
13+
814
## [0.3.0a0]
915

1016
# Added

unboxapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class DeploymentType(Enum):
6363

6464

6565
# NOTE: Don't modify this unless you are deploying on-prem.
66-
DEPLOYMENT = DeploymentType.ONPREM
66+
DEPLOYMENT = DeploymentType.AWS
6767

6868

6969
class UnboxClient(object):

unboxapi/api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
from .exceptions import ExceptionMap, UnboxException
1111
from .version import __version__
1212

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"
1616
UNBOX_STORAGE_PATH = os.path.expanduser("~/unbox/unbox-onpremise/userStorage")
1717

1818

0 commit comments

Comments
 (0)