Skip to content

Commit b822597

Browse files
committed
use e2b.app as default domain
1 parent c4129d8 commit b822597

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/js-sdk/src/connectionConfig.ts

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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)