next-ucap-messenger/projects/ucap-webmessenger-app/src/environments/environment.dev.ts

80 lines
1.4 KiB
TypeScript
Raw Normal View History

2019-11-12 09:54:21 +00:00
import {
Environment,
commonApiUrls,
commonApiacceptableFileExtensions,
publicApiUrls,
externalApiUrls,
piUrls,
protocolUrls,
2019-11-13 06:42:30 +00:00
messageApiUrls
2019-11-12 09:54:21 +00:00
} from './environment.type';
export const environment: Environment = {
production: false,
title: `[개발] Woori TALK`,
commonApiModuleConfig: {
hostConfig: {
protocol: 'http',
domain: '27.122.224.170',
2019-11-13 06:42:30 +00:00
port: 8011
2019-11-12 09:54:21 +00:00
},
urls: commonApiUrls,
2019-11-13 06:42:30 +00:00
acceptableFileExtensions: commonApiacceptableFileExtensions
2019-11-12 09:54:21 +00:00
},
publicApiModuleConfig: {
hostConfig: {
protocol: 'http',
domain: '27.122.224.170',
2019-11-13 06:42:30 +00:00
port: 8011
2019-11-12 09:54:21 +00:00
},
2019-11-13 06:42:30 +00:00
urls: publicApiUrls
2019-11-12 09:54:21 +00:00
},
externalApiModuleConfig: {
hostConfig: {
protocol: 'http',
domain: '27.122.224.170',
2019-11-13 06:42:30 +00:00
port: 8011
2019-11-12 09:54:21 +00:00
},
2019-11-13 06:42:30 +00:00
urls: externalApiUrls
},
messageApiModuleConfig: {
hostConfig: {
protocol: 'http',
domain: '27.122.224.170',
port: 9097
},
urls: messageApiUrls
2019-11-12 09:54:21 +00:00
},
piModuleConfig: {
hostConfig: {
protocol: 'http',
domain: '27.122.224.170',
2019-11-13 06:42:30 +00:00
port: 9097
2019-11-12 09:54:21 +00:00
},
2019-11-13 06:42:30 +00:00
urls: piUrls
2019-11-12 09:54:21 +00:00
},
protocolModuleConfig: {
hostConfig: {
protocol: 'ws',
domain: '27.122.224.170',
2019-11-13 06:42:30 +00:00
port: 8080
2019-11-12 09:54:21 +00:00
},
urls: protocolUrls,
reconnect: {
2019-11-13 06:42:30 +00:00
delay: 1000
2019-11-12 09:54:21 +00:00
},
requestId: {
min: 1,
2019-11-13 06:42:30 +00:00
max: 59999
}
2019-11-12 09:54:21 +00:00
},
2019-11-13 06:42:30 +00:00
nativeModuleConfig: {}
2019-11-12 09:54:21 +00:00
};