Skip to content

Commit

Permalink
Updates local compute port from :7777 to :7788.
Browse files Browse the repository at this point in the history
  • Loading branch information
gunsch committed Apr 22, 2024
1 parent 10c5d76 commit 3a8e2ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/storage/settings-save.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type SettingsSave = {
useLocalRuntime: boolean
/** Enable remote runtime. Upload often and execute apps remotely as needed. */
useRemoteRuntime: boolean
/** Probably the devenv compute address. Eg, http://localhost:7777. */
/** Probably the devenv compute address. Eg, http://localhost:7788. */
remoteRuntimeOrigin: string
/**
* Settings version recorded at save time. Used for unpacking old data if
Expand All @@ -23,7 +23,7 @@ export const defaultSettings: Readonly<SettingsSave> = {
useExperimentalBlocks: false,
useLocalRuntime: true,
useRemoteRuntime: false,
remoteRuntimeOrigin: 'http://localhost:7777',
remoteRuntimeOrigin: 'http://localhost:7788',
version: 1
}

Expand Down

0 comments on commit 3a8e2ca

Please sign in to comment.