Updated openvidu-ionic

This commit is contained in:
Carlos Santos 2023-11-16 15:45:45 +01:00
parent acc5dee3b5
commit cde8191e0b
3 changed files with 7 additions and 5 deletions

View File

@ -19,8 +19,8 @@ import { environment } from 'src/environments/environment';
styleUrls: ['home.page.scss'],
})
export class HomePage {
APPLICATION_SERVER_URL = 'http://localhost:5000/';
WS_LIVEKIT_URL = 'ws://localhost:7880/';
APPLICATION_SERVER_URL = environment.applicationServerUrl;
WS_LIVEKIT_URL = environment.wsLivekitUrl;
private IS_DEVICE_DEV_MODE = false;
// OpenVidu objects

View File

@ -1,5 +1,5 @@
export const environment = {
production: true,
// Only for local development with a real device. This will be filled automatically running 'npm dev:android' or 'npm dev:ios'
externalIp: ''
applicationServerUrl: '',
wsLivekitUrl: '',
};

View File

@ -4,6 +4,8 @@
export const environment = {
production: false,
applicationServerUrl: 'http://localhost:5000/',
wsLivekitUrl: 'ws://localhost:7880/',
// Only for local development with a real device. This will be filled automatically running 'npm dev:android' or 'npm dev:ios'
externalIp: '192.168.1.46'
externalIp: ''
};