2
xuxy
2024-06-27 353b734a16dd753bef78105364f5a7ecbeac9712
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const environments = {
    'local': {
        httpBaseUri: 'http://localhost:8083',
        clientId: '',
        secret: '',
        tenantId: '',
        appDownloadUri: 'http://xxx/app/',
        websocketUrl: '',
        type: 'dev'
    },
    'dev': {
        httpBaseUri: 'http://39.103.237.67:8083',
        clientId: '',
        secret: '',
        tenantId: '',
        appDownloadUri: 'http://xxx/app/',
        websocketUrl: '',
        type: 'dev'
    },
}
// export default environments['local']
// export default environments['dev']
 
export default {
    // httpBaseUri: 'http://localhost:8084',
    httpBaseUri: 'http://121.199.161.55:8080/flower',
    // http://106.14.123.210:8080/flower/swagger-ui.html#/
    // httpBaseUri: 'http://121.196.214.70',
    // httpBaseUri: 'http://localhost:8084',
    // httpBaseUri:'http://39.103.237.67:80',
    // //#ifndef H5-SERVERLOCAL
    // httpBaseUri: 'http://47.96.167.62:8083/',
    // //#endif
    clientId: '',
    secret: '',
    tenantId: '',
    appDownloadUri: 'http://xxx/app/',
    websocketUrl: '',
    type: 'dev'
}