Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ yarn
yarn run web-rebuild
# build web
yarn run build-web
# start project, visit 127.0.0.1:8080
# start project, visit http://localhost:8080 or http://localhost:8080/?workspaceDir=workspace_dir
yarn run start-web
```

Expand Down
4 changes: 0 additions & 4 deletions src/bootstrap-web/node/start-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import * as http from 'http';
import Koa from 'koa';
import koaStatic from 'koa-static';
import { Deferred } from '@opensumi/ide-core-common';
import { DEFAULT_ALIPAY_CLOUD_REGISTRY } from '@opensumi/ide-core-common/lib/const/application';
import { IServerAppOpts, ServerApp, NodeModule } from '@opensumi/ide-core-node';

export async function startServer(arg1: NodeModule[] | Partial<IServerAppOpts>) {
Expand All @@ -30,9 +29,6 @@ export async function startServer(arg1: NodeModule[] | Partial<IServerAppOpts>)
};

opts.marketplace = {
endpoint: DEFAULT_ALIPAY_CLOUD_REGISTRY.ENDPOINT,
accountId: DEFAULT_ALIPAY_CLOUD_REGISTRY.ACCOUNT_ID,
masterKey: DEFAULT_ALIPAY_CLOUD_REGISTRY.MASTER_KEY,
showBuiltinExtensions: true,
}

Expand Down