Skip to content

Commit a846be2

Browse files
committed
fix: y-quil
1 parent a8dad10 commit a846be2

File tree

3 files changed

+205
-143
lines changed

3 files changed

+205
-143
lines changed

frontend/intelligent-ide/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
"command": "intelligent-ide.collaborative.join",
112112
"title": "Join Collaborative Entry",
113113
"category": "Intelligent IDE: Course",
114-
"icon": "$(debug-step-into)"
114+
"icon": "$(radio-tower)"
115115
},
116116
{
117117
"command": "intelligent-ide.directory.delete",

frontend/intelligent-ide/src/resources/configs/config.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
const BASE_PORT = 8080;
2+
13
export const API_CONFIG = {
2-
BASE_URL: 'http://localhost:8080/api',
3-
BASE_WS_URL: 'ws://localhost:8080/ws',
4+
BASE_PORT: BASE_PORT,
5+
BASE_URL: 'http://localhost:' + BASE_PORT + '/api',
6+
BASE_WS_URL: 'ws://localhost:'+ BASE_PORT +'/ws',
47
// User endpoints
58
USER: {
69
LOGIN: '/user/login',

0 commit comments

Comments
 (0)