70 lines
1.2 KiB
TypeScript
70 lines
1.2 KiB
TypeScript
|
import {
|
||
|
Environment,
|
||
|
commonApiUrls,
|
||
|
commonApiacceptableFileExtensions,
|
||
|
publicApiUrls,
|
||
|
externalApiUrls,
|
||
|
piUrls,
|
||
|
protocolUrls,
|
||
|
} from './environment.type';
|
||
|
|
||
|
export const environment: Environment = {
|
||
|
production: false,
|
||
|
title: `[개발] Woori TALK`,
|
||
|
|
||
|
commonApiModuleConfig: {
|
||
|
hostConfig: {
|
||
|
protocol: 'http',
|
||
|
domain: '27.122.224.170',
|
||
|
port: 8011,
|
||
|
},
|
||
|
urls: commonApiUrls,
|
||
|
acceptableFileExtensions: commonApiacceptableFileExtensions,
|
||
|
},
|
||
|
|
||
|
publicApiModuleConfig: {
|
||
|
hostConfig: {
|
||
|
protocol: 'http',
|
||
|
domain: '27.122.224.170',
|
||
|
port: 8011,
|
||
|
},
|
||
|
urls: publicApiUrls,
|
||
|
},
|
||
|
|
||
|
externalApiModuleConfig: {
|
||
|
hostConfig: {
|
||
|
protocol: 'http',
|
||
|
domain: '27.122.224.170',
|
||
|
port: 8011,
|
||
|
},
|
||
|
urls: externalApiUrls,
|
||
|
},
|
||
|
|
||
|
piModuleConfig: {
|
||
|
hostConfig: {
|
||
|
protocol: 'http',
|
||
|
domain: '27.122.224.170',
|
||
|
port: 9097,
|
||
|
},
|
||
|
urls: piUrls,
|
||
|
},
|
||
|
|
||
|
protocolModuleConfig: {
|
||
|
hostConfig: {
|
||
|
protocol: 'ws',
|
||
|
domain: '27.122.224.170',
|
||
|
port: 8080,
|
||
|
},
|
||
|
urls: protocolUrls,
|
||
|
reconnect: {
|
||
|
delay: 1000,
|
||
|
},
|
||
|
requestId: {
|
||
|
min: 1,
|
||
|
max: 59999,
|
||
|
},
|
||
|
},
|
||
|
|
||
|
nativeModuleConfig: {},
|
||
|
};
|