Skip to content

Commit 85c4505

Browse files
authored
Change default domain in sdks from e2b.dev to e2b.app (#635)
1 parent c4129d8 commit 85c4505

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.changeset/nervous-waves-relate.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@e2b/python-sdk': minor
3+
'e2b': minor
4+
---
5+
6+
Changes default domain to e2b.app
7+

packages/js-sdk/src/connectionConfig.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface ConnectionOpts {
2525
/**
2626
* Domain to use for the API.
2727
*
28-
* @default E2B_DOMAIN // environment variable or `e2b.dev`
28+
* @default E2B_DOMAIN // environment variable or `e2b.app`
2929
*/
3030
domain?: string
3131
/**
@@ -74,7 +74,7 @@ export class ConnectionConfig {
7474
}
7575

7676
private static get domain() {
77-
return getEnvVar('E2B_DOMAIN') || 'e2b.dev'
77+
return getEnvVar('E2B_DOMAIN') || 'e2b.app'
7878
}
7979

8080
private static get debug() {

packages/python-sdk/e2b/connection_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ConnectionConfig:
1515

1616
@staticmethod
1717
def _domain():
18-
return os.getenv("E2B_DOMAIN", "e2b.dev")
18+
return os.getenv("E2B_DOMAIN", "e2b.app")
1919

2020
@staticmethod
2121
def _debug():

0 commit comments

Comments
 (0)