We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8dad10 commit a846be2Copy full SHA for a846be2
frontend/intelligent-ide/package.json
@@ -111,7 +111,7 @@
111
"command": "intelligent-ide.collaborative.join",
112
"title": "Join Collaborative Entry",
113
"category": "Intelligent IDE: Course",
114
- "icon": "$(debug-step-into)"
+ "icon": "$(radio-tower)"
115
},
116
{
117
"command": "intelligent-ide.directory.delete",
frontend/intelligent-ide/src/resources/configs/config.ts
@@ -1,6 +1,9 @@
1
+const BASE_PORT = 8080;
2
+
3
export const API_CONFIG = {
- BASE_URL: 'http://localhost:8080/api',
- 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',
7
// User endpoints
8
USER: {
9
LOGIN: '/user/login',
0 commit comments