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 42896f6 commit 591bf91Copy full SHA for 591bf91
src/app/core/services/config-service/api.enpoints.ts
@@ -8,11 +8,11 @@ import {
8
} from '../../models/organization.model';
9
import { SearchingUser } from '../../models/user.models';
10
11
-export const version = '';
+export const version = 'v1';
12
13
export const API_CONFIG = {
14
BASE_URLS: {
15
- MAIN_API: environment.IP_SERVER,
+ MAIN_API: environment.IP_SERVER_LOCAL,
16
SECONDARY_API: '',
17
},
18
ENDPOINTS: {
src/environments/environment.ts
@@ -1,4 +1,5 @@
1
export const environment = {
2
production: false,
3
IP_SERVER: '/api',
4
+ IP_SERVER_LOCAL: 'http://localhost:8888/api/',
5
};
0 commit comments